$ man flight-brief
/flight-brief
PRICE / CALL
$0.03
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
composeCATEGORY
uncategorized
STATUS
● live
NAME
flight-brief — reports live flight status with faa airport delays and airport info in one call
SYNOPSIS
POST https://x402.agentutility.ai/flight-brief
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Reports live flight status with FAA airport delays and airport info in one call. Composite: one call runs flight-status + airport-delays + iata-airport-info. Live aircraft state for a flight callsign (OpenSky Network) plus FAA ground stops, GDPs, and delay programs. Pass optional origin/destination IATA-3 codes to get per-airport delay events and airport metadata (name, coordinates, links); omit them and the national FAA delay picture is attached instead. Live data from OpenSky Network and FAA NAS Status. Use it as a flight tracker bundle or callsign lookup with delay context.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| flight_number | string | Flight callsign, 2-8 alphanumeric chars (e.g. 'UAL124', 'DLH400'). ICAO-style callsigns match best against OpenSky. | required |
| date | string | Optional ISO date, echoed for caller bookkeeping. OpenSky serves live state only. | optional |
| origin | string | Optional origin IATA-3 airport code (e.g. 'SFO') for per-airport delay + metadata enrichment. | optional |
| destination | string | Optional destination IATA-3 airport code (e.g. 'JFK') for per-airport delay + metadata enrichment. | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| flight_number | string | — |
| callsign | string | — |
| date | string | — |
| flight | string | — |
| airports | string | — |
| national_delays | string | — |
| composed_of | string | — |
| components | string | — |
| degraded | string | — |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/flight-brief \
-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-brief tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- composeflightbriefflight-brief
- methods
- POST
- cluster
- compose
- price
- $0.03 USDC per call
ADJACENT — other endpoints in compose
| endpoint | description | price |
|---|---|---|
| address-intel-pack | Enriches a street address in one call: parse, geocode, timezone, and building permits. | $0.03 |
| clean-text-pack | Sanitizes raw text in one call: Unicode normalization, homoglyph audit, PII detection, and PII redaction. | $0.03 |
| contact-normalize-pack | Normalizes a contact record in one call, generating stable match keys for email, name, phone, and address plus parsed US address components. | $0.03 |
| email-trust-report | Vets an email address in one call: deliverability, disposable check, DMARC posture, and a dedupe key. | $0.03 |
| json-dev-pack | Converts a JSON document to TypeScript types and YAML, with optional schema validation, in one call. | $0.03 |
| onchain-identity-pack | Resolves an EVM address or name across ENS, Basenames, and known-wallet labels in one call. | $0.03 |
| regex-pack | Generates a regex from a natural-language prompt and live-tests it in one call. | $0.03 |
| text-intel-pack | Runs full text analysis in one call: language detection, sentiment, named entities, token count, and optional zero-shot classification. | $0.03 |
SEE ALSO