$ man flight-status
/flight-status
PRICE / CALL
$0.01
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
localeCATEGORY
uncategorized
STATUS
● live
NAME
flight-status — tracks live aircraft positions from the opensky network
SYNOPSIS
POST https://x402.agentutility.ai/flight-status
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Tracks live aircraft positions from the OpenSky Network. Pass icao24 (6-char hex transponder, e.g. 'a808c5'), a callsign (e.g. 'UAL124'), or a bbox {lamin,lamax,lomin,lomax}; returns last-known position, altitude, speed, heading, on-ground flag, and origin country per aircraft. Use it as a flight status check, flight tracker, ICAO24 lookup, callsign lookup, aircraft bounding-box query, or OpenSky state-vector wrapper.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| icao24 | string | 24-bit ICAO transponder address in hex (e.g. 'a808c5'). Lowercase, exactly 6 chars. | optional |
| callsign | string | Flight callsign (e.g. 'UAL124'). Matched against the global state vector; expect higher latency than icao24 lookups. | optional |
| bbox | object | Optional lat/lon bounding box. lamin<lamax, lomin<lomax, |lat|<=90, |lon|<=180. | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| mode | string | Lookup mode used: 'icao24', 'callsign', or 'bbox' depending on which input was supplied. |
| query | object | Echo of the input query parameters (icao24, callsign, or bbox coords) used for this lookup. |
| snapshot_time | number | Unix timestamp (seconds) of when OpenSky captured this state-vector snapshot. |
| count | number | Number of aircraft state-vectors returned in the states array for this query. |
| states | array | Array of aircraft state objects with icao24, callsign, position, altitude, velocity, heading, on-ground flag, origin country. |
| source | string | Upstream data provider identifier, typically 'opensky-network'. |
| attribution | string | Required attribution string for OpenSky Network's anonymous commercial-OK tier. |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/flight-status \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# Install the MCP package for this endpoint's cluster npx -y @agentutility/mcp-<cluster> # Required: EVM private key with USDC on Base export X402_PRIVATE_KEY=0x... # Then call the flight-status tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- flightaircrafttrackeropenskyicao24aviation
- methods
- POST
- cluster
- locale
- price
- $0.01 USDC per call
ADJACENT — other endpoints in locale
| endpoint | description | price |
|---|---|---|
| city-weather | Returns current weather by city name with an instant geocoded lookup. | $0.01 |
| current | Instant current weather by city name: geocodes a city or place name, then returns current Open-Meteo temperature, feels-like, humidity, w… | $0.01 |
| current-weather-city | Current weather city lookup / city-name weather conditions. | $0.01 |
| property-tax | Property tax lookup. | $0.01 |
| property-tax-assessment | Searches county assessor records by address or parcel ID for owner, assessed value, and property details. | $0.01 |
| satellite-address | Turns a street address into a cloud-free satellite image in one call. | $0.01 |
| sports-schedule | Returns upcoming games and recent results for major sports leagues: MLB, NBA, NHL, NFL, WNBA, MLS, EPL, La Liga, Bundesliga, and Serie A. | $0.01 |
| weather-current-city | Returns current weather for any city or place name, no coordinates needed. | $0.01 |
SEE ALSO