Airports at Cities Lookup Mock Server

Retrieve major airport and rail station codes associated with multi-airport city codes.

The Airports at Cities Lookup API provides mapping between multi-airport city (MAC) codes and their constituent airport or rail station codes. It is essential for travel applications that need to resolve city-level search requests into specific transport hubs.

Use this hosted mock server to simulate Airports at Cities Lookup APIs without authentication, API keys, or extra dependencies. Point your code or SDK to the Beeceptor base URL, preferably through an environment variable or feature flag, and switch back to the production API when ready. This keeps your integration code consistent across local development, QA, demos, and production.

Use cases:

Use this sandbox to verify reference-data mapping, autocomplete behavior, invalid-code handling, and fallback logic for travel metadata such as airports, airlines, countries, or equipment codes.

Airports at Cities Lookup mock server is up and running!

Use this mock URL as the API base in your code to simulate Airports at Cities Lookup responses instantly.

https://sabre-airport-lookup.mock.beeceptor.com



General

{
  "Airports": [
    {
      "code": "LAX",
      "name": "Newark Liberty International Airport"
    },
    {
      "code": "JFK",
      "name": "Singapore Changi Airport"
    },
    {
      "code": "FRA",
      "name": "Frankfurt Airport"
    },
    {
      "code": "HND",
      "name": "O'Hare International Airport"
    }
  ],
  "Links": [
    {
      "href": "https://api.cert.platform.sabre.com/v1/lists/supported/cities/NYC/airports",
      "rel": "self"
    }
  ],
  "Others": [
    {
      "code": "JFK",
      "name": "Los Angeles International Airport"
    },
    {
      "code": "FRA",
      "name": "Los Angeles International Airport"
    },
    {
      "code": "SIN",
      "name": "John F. Kennedy International Airport"
    },
    {
      "code": "EWR",
      "name": "Dubai International Airport"
    },
    {
      "code": "HND",
      "name": "Charles de Gaulle Airport"
    }
  ],
  "Rail stations": [
    {
      "code": "LGW",
      "name": "John F. Kennedy International Airport"
    }
  ]
}
Missing schema or example in the OpenAPI spec.
Update the definition and recreate the mock server.
sabretravelairportslookuprest