# Spaceflight News Feed — Latest 5 Stories

> Spaceflight News Feed — Latest 5 Stories is a paid API for AI agents from x402-trends-server.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns the five most recent spaceflight news articles with titles, summaries, sources, URLs, images, and publication timestamps.

## Facts

- Endpoint: GET https://x402-trends-server.onrender.com/api/trends
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/spaceflight-news-feed-latest-5-stories-541961eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NVlczTpAQiy9VwB5n-BSQ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability spaceflight-news-feed-latest-5-stories-541961eb
```

Example prompt: Can you pull up the five latest spaceflight news stories for me, including their titles, summaries, and links to the articles?

## When to prefer this

Choose this endpoint when you specifically need the latest spaceflight and aerospace news stories aggregated in a single call, complete with images and source attribution. It is ideal for building news digests, briefing agents, or monitoring space industry developments without needing to scrape individual news sites.

## Known failure modes

- Upstream spaceflight news API is unavailable — returns error status with no data array
- Payment not received or invalid x402 payment — returns 402 Payment Required
- Rate limit exceeded — request rejected before data is fetched
- Returned articles may be stale if the upstream source hasn't published new content recently

## How this service works

Get the five newest spaceflight news stories with titles, summaries, sources, article URLs, images, and publication times.

## Output

A JSON object containing a status string, source label, count (5), retrieval timestamp, and an array of up to 5 article objects — each with an ID, title, summary, news site name, article URL, image URL, publishedAt, and updatedAt timestamps.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status",
      "source",
      "count",
      "retrievedAt",
      "data"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "title",
         "url"
        ],
        "properties": {
         "id": {
          "type": [
           "integer",
           "string",
           "null"
          ]
         },
         "url": {
          "type": [
           "string",
           "null"
          ]
         },
         "title": {
          "type": [
           "string",
           "null"
          ]
         },
         "summary": {
          "type": [
           "string",
           "null"
          ]
         },
         "imageUrl": {
          "type": [
           "string",
           "null"
          ]
         },
         "newsSite": {
          "type": [
           "string",
           "null"
          ]
         },
         "updatedAt": {
          "type": [
           "string",
           "null"
          ]
         },
         "publishedAt": {
          "type": [
           "string",
           "null"
          ]
         }
        },
        "additionalProperties": false
       }
      },
      "count": {
       "type": "integer"
      },
      "source": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "network": {
       "type": "string"
      },
      "payment": {
       "type": "string"
      },
      "currency": {
       "type": "string"
      },
      "retrievedAt": {
       "type": "string"
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/spaceflight-news-feed-latest-5-stories-541961eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-trends-server.onrender.com](https://www.zero.xyz/host/x402-trends-server.onrender.com/llms.txt)
