# greeneris-data-space-launches

> greeneris-data-space-launches is a paid API for AI agents from data.greeneris.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Retrieve upcoming space launch schedules with filtering by provider, date range, and mission keyword

## Facts

- Endpoint: GET https://data.greeneris.io/v1/space/launches
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/greeneris-data-space-launches-b22eb3e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f4elU_WieACSn_wvWOSaj

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 greeneris-data-space-launches-b22eb3e9
```

Example prompt: Show me the next 10 upcoming SpaceX rocket launches, especially any Starlink missions — filter for anything launching after July 14, 2026.

## When to prefer this

Use this endpoint when you need real-time upcoming space launch data filtered by provider (e.g. SpaceX), keyword (e.g. 'Starlink'), or date window. It is backed by Launch Library 2, a reputable community-maintained database. Prefer this over scraping news sites or using general web search when structured, machine-readable launch schedule data is needed for automation or display.

## Known failure modes

- Invalid date format for net_gte/net_lte returns a 400 error
- limit out of range (must be 1-25) returns a 400 error
- No launches matching the filter criteria returns an empty launches array
- Payment not provided returns HTTP 402 with machine-readable USDC pricing quote
- Network timeout or upstream Launch Library 2 unavailability returns a 503

## How this service works

Upcoming space launches worldwide from Launch Library 2 (The Space Devs): launch window (NET, window start/end), provider, pad and location, mission name/type/orbit, go/TBD status. Query: ?limit=10&search=falcon&provider=SpaceX&net_gte=2026-08-01&net_lte=2026-09-01 (all optional). Served from a 1h cache (upstream is rate-limited); count field gives the full upcoming total.

## Output

A JSON object containing a list of upcoming launches (up to the requested limit), each with launch name, provider, mission type, launch pad, location, status (e.g. 'Go'), NET datetime, window start/end, and orbit. Also includes total upcoming launch count and data source attribution.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 10,
       "description": "Number of launches to return (1-25)"
      },
      "search": {
       "type": "string",
       "description": "Free-text filter, e.g. falcon, starlink"
      },
      "net_gte": {
       "type": "string",
       "description": "Earliest NET, ISO date(-time)"
      },
      "net_lte": {
       "type": "string",
       "description": "Latest NET, ISO date(-time)"
      },
      "provider": {
       "type": "string",
       "description": "Launch service provider name, e.g. SpaceX"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source": "Launch Library 2 by The Space Devs (thespacedevs.com)",
  "launches": [
   {
    "id": "e09f254f-18bc-4985-963e-6075fa3d7a1c",
    "net": "2026-07-14T01:28:17Z",
    "pad": "Space Launch Complex 4E",
    "name": "Falcon 9 Block 5 | Starlink Group 15-14",
    "orbit": null,
    "status": "Go",
    "mission": "Starlink Group 15-14",
    "location": "Vandenberg SFB, CA, USA",
    "provider": "SpaceX",
    "window_end": "2026-07-14T02:16:00Z",
    "mission_type": "Communications",
    "window_start": "2026-07-14T01:16:00Z"
   }
  ],
  "returned": 1,
  "total_upcoming": 364
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/greeneris-data-space-launches-b22eb3e9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.greeneris.io](https://www.zero.xyz/host/data.greeneris.io/llms.txt)
