Flightradar24 · Schema

AirportFull

Detailed airport reference data from the Flightradar24 API.

AviationFlight TrackingReal-TimeAircraftAirportsAirlinesADS-BHistorical Data

Properties

Name Type Description
name string Airport full name.
lat number Latitude in decimal degrees.
lon number Longitude in decimal degrees.
elevation number Airport elevation in feet.
country object
city string City served by the airport.
timezone object
iata stringnull Airport IATA code.
icao stringnull Airport ICAO code.
state stringnull State or region.
runways arraynull List of runways at the airport.
View JSON Schema on GitHub

JSON Schema

airport-full.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flightradar24/main/json-schema/airport-full.json",
  "title": "AirportFull",
  "description": "Detailed airport reference data from the Flightradar24 API.",
  "type": "object",
  "required": ["name", "lat", "lon", "elevation", "country", "city", "timezone"],
  "properties": {
    "name": { "type": "string", "description": "Airport full name.", "example": "London Heathrow Airport" },
    "lat": { "type": "number", "minimum": -90, "maximum": 90, "description": "Latitude in decimal degrees.", "example": 51.4706 },
    "lon": { "type": "number", "minimum": -180, "maximum": 180, "description": "Longitude in decimal degrees.", "example": -0.4619 },
    "elevation": { "type": "number", "description": "Airport elevation in feet.", "example": 83.0 },
    "country": {
      "type": "object",
      "required": ["code", "name"],
      "properties": {
        "code": { "type": "string", "minLength": 2, "maxLength": 2, "description": "ISO 3166-1 alpha-2 country code.", "example": "GB" },
        "name": { "type": "string", "description": "Country name.", "example": "United Kingdom" }
      }
    },
    "city": { "type": "string", "description": "City served by the airport.", "example": "London" },
    "timezone": {
      "type": "object",
      "required": ["name", "offset"],
      "properties": {
        "name": { "type": "string", "description": "IANA timezone name.", "example": "Europe/London" },
        "offset": { "type": "integer", "description": "UTC offset in seconds.", "example": 0 }
      }
    },
    "iata": { "type": ["string", "null"], "minLength": 3, "maxLength": 3, "description": "Airport IATA code.", "example": "LHR" },
    "icao": { "type": ["string", "null"], "minLength": 4, "maxLength": 4, "description": "Airport ICAO code.", "example": "EGLL" },
    "state": { "type": ["string", "null"], "description": "State or region.", "example": "England" },
    "runways": {
      "type": ["array", "null"],
      "description": "List of runways at the airport.",
      "items": {
        "type": "object",
        "required": ["designator", "heading", "length", "width", "elevation", "thr_coordinates", "surface"],
        "properties": {
          "designator": { "type": "string", "description": "Runway designator.", "example": "27L/09R" },
          "heading": { "type": "integer", "minimum": 0, "maximum": 360, "description": "Magnetic heading in degrees.", "example": 270 },
          "length": { "type": "integer", "minimum": 0, "description": "Runway length in metres.", "example": 3901 },
          "width": { "type": "integer", "minimum": 0, "description": "Runway width in metres.", "example": 60 },
          "elevation": { "type": "integer", "description": "Runway elevation in feet.", "example": 83 },
          "thr_coordinates": {
            "type": "array",
            "items": { "type": "number" },
            "minItems": 2,
            "maxItems": 2,
            "description": "Threshold coordinates [latitude, longitude].",
            "example": [51.4706, -0.4619]
          },
          "surface": {
            "type": "object",
            "required": ["type", "description"],
            "properties": {
              "type": { "type": "string", "description": "Surface type code.", "example": "ASPH" },
              "description": { "type": "string", "description": "Surface description.", "example": "Asphalt" }
            }
          }
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/airport-full"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.