Real-time aviation data including flight tracking, airport information, aircraft types, and aviation weather. Pay-per-request via x402 micropayments.
Pay from $0.001 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.
UPTIME 24H 100% │ 7D 100% │ 30D 100%
ENDPOINTS
| METHOD | PATH | DESCRIPTION | PRICE | NETWORK | ASSET |
|---|---|---|---|---|---|
| GET | /aviation/aircraft | $0.001 | Base | USDC | |
| GET | /aviation/airports | --- | USDC | ||
| GET | /aviation/flights | $0.001 | Base | USDC |
3 endpoints
REQUEST / RESPONSE EXAMPLE
An unpaid request to GET /aviation/aircraft returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.
// request
curl -i 'https://aviation.x402.press/aviation/aircraft'
// 402 response (captured by monitor)
[
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x3C74Ce3f8566Ff04B312320E7c264A691c409992",
"amount": "1000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
"extra": {
"name": "EURC",
"version": "2"
},
"payTo": "0x3C74Ce3f8566Ff04B312320E7c264A691c409992",
"amount": "1000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://aviation.x402.press/aviation/flights",
"tags": [
"aviation",
"flights",
"tracking",
"ads-b",
"x402"
],
"mimeType": "application/json",
"description": "Live aircraft positions near a location (ADS-B, global).",
"serviceName": "Aviation"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"latitude": 51.5,
"longitude": -0.12,
"radius_km": 100
},
"type": "http",
"method": "GET",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"count": 1,
"source": "Live Flight Tracking",
"flights": [
{
"icao24": "39de53",
"heading": 217.7,
"callsign": "BAW123",
"latitude": 51.47,
"longitude": -0.45,
"altitude_m": 11582.4,
"velocity_kmh": 850,
"origin_country": "United Kingdom"
}
],
"location": {
"lat": 51.5,
"lon": -0.12,
"radius_km": 100
}
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"required": [
"latitude",
"longitude"
],
"properties": {
"latitude": {
"type": "number",
"description": "Latitude (-90 to 90)"
},
"longitude": {
"type": "number",
"description": "Longitude (-180 to 180)"
},
"radius_km": {
"type": "integer",
"default": 100,
"description": "Search radius in km"
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object"
}
}
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x3C74Ce3f8566Ff04B312320E7c264A691c409992",
"amount": "1000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
"extra": {
"name": "EURC",
"version": "2"
},
"payTo": "0x3C74Ce3f8566Ff04B312320E7c264A691c409992",
"amount": "1000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://aviation.x402.press/aviation/aircraft",
"tags": [
"aviation",
"aircraft",
"icao",
"specs",
"x402"
],
"mimeType": "application/json",
"description": "Aircraft specifications lookup by ICAO type designator with performance data.",
"serviceName": "Aviation"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"type": "B738"
},
"type": "http",
"method": "GET",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"wtc": "M",
"name": "Boeing 737-800",
"type": "B738",
"source": "Aircraft Database",
"range_km": 5438,
"engine_type": "Jet",
"cruise_speed_kmh": 852
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"description": "ICAO aircraft type designator (2-4 chars, e.g. B738, A320, B77W)"
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object"
}
}
}
}
}
}
},
"x402Version": 2
}
] UPTIME
RESPONSE TIME
30d UPTIME 100%
UPTIME 30D 100%
AVG RESP 387ms
TOTAL CHECKS 139
RECENT CHECKS
TIME STATUS RESP
● OK 443ms
● OK 295ms
● OK 437ms
● OK 215ms
● OK 352ms
● OK 545ms
● OK 538ms
● OK 426ms
● OK 382ms
● OK 206ms
● OK 413ms
● OK 443ms
● OK 253ms
● OK 350ms
● OK 476ms
EMBED THIS BADGE
// HTML
<a href="https://x402-list.com/services/aviation-x402?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/aviation-x402.svg" alt="Aviation x402 listed on x402-list" height="26"> </a>
// Markdown
[](https://x402-list.com/services/aviation-x402?utm_source=badge&utm_medium=referral&utm_campaign=embed)