Sabre Flights To Mock Server

Retrieve lowest published fares for specific destinations from the Sabre cache.

The Flights To API provides access to the lowest published fares available in the cache for a given destination. It allows developers to integrate fare discovery into travel applications by querying cached pricing data for specific routes.

Use this hosted mock server to simulate Sabre Flights To 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 validate destination-based fare search requests, handle cache-based pricing responses, test currency and date formatting, and verify application logic for displaying lowest-fare options to end users.

Sabre Flights To mock server is up and running!

Use this mock URL as the API base in your code to simulate Sabre Flights To responses instantly.

https://sabre-flights-to.mock.beeceptor.com



General

Query Parameter NameExample
triptypeOneWay
pointofsalecountryin aliquip laborum dolor proident
{
  "DestinationLocation": "DFW",
  "FareInfo": [
    {
      "CurrencyCode": "CAD",
      "DepartureDateTime": "2026-10-05T06:15:00",
      "Links": [
        {
          "href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=MIA&destination=SFO",
          "rel": "shop"
        },
        {
          "href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=ORD&destination=LAX",
          "rel": "shop"
        }
      ],
      "LowestFare": {
        "AirlineCodes": [
          "UA",
          "AF",
          "EK",
          "SQ"
        ],
        "Fare": 340
      },
      "OriginLocation": "ORD",
      "ReturnDateTime": "2027-04-15T07:45:00"
    },
    {
      "CurrencyCode": "CAD",
      "DepartureDateTime": "2026-12-01T12:00:00",
      "Links": [
        {
          "href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=SFO&destination=SEA",
          "rel": "shop"
        },
        {
          "href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=DEN&destination=DFW",
          "rel": "shop"
        },
        {
          "href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=ORD&destination=DEN",
          "rel": "shop"
        }
      ],
      "LowestFare": {
        "AirlineCodes": [
          "SQ",
          "AF",
          "JL"
        ],
        "Fare": 899
      },
      "OriginLocation": "FRA",
      "ReturnDateTime": "2026-12-10T12:00:00"
    },
    {
      "CurrencyCode": "CHF",
      "DepartureDateTime": "2026-07-15T08:00:00",
      "Links": [
        {
          "href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=ORD&destination=DEN",
          "rel": "shop"
        }
      ],
      "LowestFare": {
        "AirlineCodes": [
          "EK",
          "BA"
        ],
        "Fare": 1500
      },
      "OriginLocation": "SIN",
      "ReturnDateTime": "2026-09-20T10:00:00"
    }
  ],
  "Links": [
    {
      "href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=ORD&destination=LAX",
      "rel": "self"
    },
    {
      "href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=LAX&destination=DEN",
      "rel": "self"
    },
    {
      "href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=ORD&destination=LAX",
      "rel": "self"
    }
  ]
}
Missing schema or example in the OpenAPI spec.
Update the definition and recreate the mock server.
Missing schema or example in the OpenAPI spec.
Update the definition and recreate the mock server.
sabretravelflightsfaresrest