# StatePulse Airspace Track - Live Aircraft Telemetry Lookup

> StatePulse Airspace Track - Live Aircraft Telemetry Lookup is a paid API for AI agents from statepulse-api.hahavoid0.workers.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns real-time flight state vectors (position, altitude, velocity, heading, callsign) for a given aircraft by ICAO24 transponder code

## Facts

- Endpoint: POST https://statepulse-api.hahavoid0.workers.dev/airspace/track
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/statepulse-airspace-track-live-aircraft-telemetry-lookup-88612eb6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MAkVoROCoy8NQqL4nRtx3

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 statepulse-airspace-track-live-aircraft-telemetry-lookup-88612eb6 -d '<json body>'
```

Example prompt: Where is aircraft 3c6444 right now — get me its live position, altitude, heading, and speed.

## When to prefer this

Use this endpoint when you need real-time position and telemetry for a specific aircraft identified by ICAO24 transponder code, especially in pay-per-call scenarios where you don't want to maintain a subscription or account. Prefer this over general flight-tracking APIs when you need live state vectors (position, velocity, heading) and can pay micro-amounts per request via USDC on Base.

## Known failure modes

- Aircraft ICAO24 not found or not currently broadcasting — supported:false in response
- Aircraft on ground or transponder off — may return on_ground:true with limited telemetry
- Invalid ICAO24 format — malformed request error
- Payment failure via x402 — 402 Payment Required response
- Rate limiting or worker timeout — 5xx error from Cloudflare Workers edge

## How this service works

Queries live airspace vectors for a specific aircraft ICAO24 hex identifier or a regional bounding box using OpenSky Network.

## Output

Returns a JSON object with the aircraft's current ICAO24 code, callsign, latitude, longitude, altitude in meters, velocity in m/s, heading in degrees, whether it is on the ground, origin country, and a confidence rating for the data quality.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "bbox": {
       "type": "object",
       "properties": {
        "lamax": {
         "type": "number",
         "description": "Latitude maximum"
        },
        "lamin": {
         "type": "number",
         "description": "Latitude minimum"
        },
        "lomax": {
         "type": "number",
         "description": "Longitude maximum"
        },
        "lomin": {
         "type": "number",
         "description": "Longitude minimum"
        }
       }
      },
      "icao24": {
       "type": "string",
       "examples": [
        "3c6444"
       ],
       "description": "24-bit ICAO aircraft address in hex"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "icao24": "3c6444",
   "heading": 184,
   "callsign": "DLH456",
   "latitude": 47.443,
   "longitude": -122.301,
   "on_ground": false,
   "altitude_m": 11200,
   "velocity_mps": 242.5,
   "origin_country": "Germany"
  },
  "supported": true,
  "confidence": "high"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/statepulse-airspace-track-live-aircraft-telemetry-lookup-88612eb6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from statepulse-api.hahavoid0.workers.dev](https://www.zero.xyz/host/statepulse-api.hahavoid0.workers.dev/llms.txt)
