# StableTravel FlightAware Airport Info

> StableTravel FlightAware Airport Info is a paid API for AI agents from stabletravel.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns detailed airport metadata (name, location, timezone, codes) for a specific airport identifier using FlightAware data

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/airports/id
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stabletravel-flightaware-airport-info-d48ef871
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c6oaNH7C8TU11bTHeN1TS

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 stabletravel-flightaware-airport-info-d48ef871
```

Example prompt: What are the full details for Miami International Airport — I need its coordinates, timezone, IATA and ICAO codes, and which city and state it's in?

## When to prefer this

Use this endpoint when you need authoritative airport metadata — coordinates, timezone, official codes — for a specific airport by its IATA or ICAO identifier. Prefer this over generic geocoding when you need aviation-specific fields like elevation, timezone, and all three airport code formats together. It is pay-per-request with no subscription needed, making it ideal for low-volume or on-demand lookups.

## Known failure modes

- Invalid or unknown airport code returns empty or error response
- Airport code format mismatch (IATA vs ICAO) may return no results
- Payment of $0.03 USDC required per call; missing payment returns 402
- Network timeout or FlightAware upstream outage causes failure

## How this service works

Pay-per-request access to flights, award availability, hotels, activities, and transfers. No auth, no subscriptions.

## Output

A JSON object containing the airport's full name, city, state, country code, IATA code (e.g. JFK), ICAO code (e.g. KJFK), LID code, latitude, longitude, elevation in feet, and timezone string (e.g. America/New_York).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "city": "New York",
  "name": "John F. Kennedy International Airport",
  "type": "Airport",
  "state": "NY",
  "code_lid": "JFK",
  "latitude": 40.6413,
  "timezone": "America/New_York",
  "code_iata": "JFK",
  "code_icao": "KJFK",
  "elevation": 13,
  "longitude": -73.7781,
  "airport_code": "KJFK",
  "country_code": "US"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stabletravel-flightaware-airport-info-d48ef871/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stabletravel.dev](https://www.zero.xyz/host/stabletravel.dev/llms.txt)
