# SpaceX Launches Today

> SpaceX Launches Today is a paid API for AI agents from agentdataapi.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a list of SpaceX launches scheduled in the next 24 hours, or an empty list if none are planned

## Facts

- Endpoint: GET https://agentdataapi.onrender.com/launches/today
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/spacex-launches-today-a94f6aed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HgZlKIt5GsNPZAT54SrBS

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 spacex-launches-today-a94f6aed
```

Example prompt: Are there any SpaceX launches happening today or in the next 24 hours?

## When to prefer this

Use this endpoint when you need to know specifically about SpaceX launches happening today or in the next 24 hours. Prefer this over the next-5-launches endpoint when the user only cares about imminent launches and wants a quick yes/no answer with immediate mission details. Use the next-5 endpoint if the user wants a broader upcoming schedule.

## Known failure modes

- Empty list returned when no launches are scheduled in the 24-hour window (not an error, expected behavior)
- 402 Payment Required if USDC payment is not included or processed
- 503 Service Unavailable if the underlying data source (SpaceX API) is down
- Rate limiting or timeout if the render.com free-tier instance is cold-starting

## How this service works

SpaceX launches in the next 24 hours (empty list if none)

## Output

A list of SpaceX launches scheduled within the next 24 hours, each including mission name, launch pad, and T-0 countdown details. Returns an empty list if no launches are planned in that window.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "stale": false,
  "launches": [
   {
    "net": "2026-07-11T03:01:57Z",
    "pad": "Space Launch Complex 4E",
    "name": "Falcon 9 Block 5 | Starlink Group 17-48",
    "rocket": "Falcon 9 Block 5",
    "status": "Go for Launch",
    "mission": "Starlink Group 17-48",
    "location": "Vandenberg SFB, CA, USA"
   }
  ],
  "window_hours": 24
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/spacex-launches-today-a94f6aed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdataapi.onrender.com](https://www.zero.xyz/host/agentdataapi.onrender.com/llms.txt)
