Sabre Fare Range Mock Server
Retrieve historical median, high, and low published fares for specific travel routes.
The Fare Range API provides insights into historical ticketed fares from the Sabre GDS. It returns the median, highest, and lowest fares recorded over the previous 4 weeks for specific origin, destination, and length-of-stay parameters, helping developers build data-driven pricing and trend analysis tools.
Use this hosted mock server to simulate Sabre Fare Range 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 fare trend analysis logic, historical data parsing, date-range query handling, and UI rendering for price-comparison tools without querying live GDS historical databases.
General
GET
| Query Parameter Name | Example |
|---|---|
origin* | elit cupidatat magna esse ullamco |
destination* | sit in in |
earliestdeparturedate* | 1914-09-07 |
latestdeparturedate* | 1899-04-16 |
lengthofstay* | 12 |
excludelcc | N |
{
"DestinationLocation": "DEN",
"FareData": [
{
"Count": "Low",
"CurrencyCode": "CAD",
"DepartureDateTime": "2026-06-20T00:00:00",
"DestinationLocation": "SEA",
"Links": [
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=ORD&destination=MIA&departuredate=2026-07-01&returndate=2026-07-04&pointofsalecountry=US",
"rel": "shop"
},
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=SEA&destination=ATL&departuredate=2026-07-15&returndate=2026-07-18&pointofsalecountry=US",
"rel": "shop"
},
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=SFO&destination=DFW&departuredate=2026-06-20&returndate=2026-06-23&pointofsalecountry=US",
"rel": "shop"
}
],
"MaximumFare": 1500,
"MedianFare": 450.5,
"MinimumFare": 150,
"OriginLocation": "PHX",
"ReturnDateTime": "2026-09-04T00:00:00"
},
{
"Count": "Low",
"CurrencyCode": "GBP",
"DepartureDateTime": "2026-07-01T00:00:00",
"DestinationLocation": "LAX",
"Links": [
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=ORD&destination=MIA&departuredate=2026-07-01&returndate=2026-07-04&pointofsalecountry=US",
"rel": "shop"
},
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=DFW&destination=SFO&departuredate=2026-08-20&returndate=2026-08-23&pointofsalecountry=US",
"rel": "shop"
},
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=SFO&destination=DFW&departuredate=2026-06-20&returndate=2026-06-23&pointofsalecountry=US",
"rel": "shop"
},
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=ATL&destination=JFK&departuredate=2026-09-01&returndate=2026-09-04&pointofsalecountry=US",
"rel": "shop"
}
],
"MaximumFare": 1800.5,
"MedianFare": 520,
"MinimumFare": 300,
"OriginLocation": "DFW",
"ReturnDateTime": "2026-08-23T00:00:00"
},
{
"Count": "Medium",
"CurrencyCode": "MXN",
"DepartureDateTime": "2026-10-05T00:00:00",
"DestinationLocation": "PHX",
"Links": [
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=LAX&destination=DEN&departuredate=2026-11-01&returndate=2026-11-04&pointofsalecountry=US",
"rel": "shop"
},
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=LAX&destination=DEN&departuredate=2026-11-01&returndate=2026-11-04&pointofsalecountry=US",
"rel": "shop"
},
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=DFW&destination=SFO&departuredate=2026-08-20&returndate=2026-08-23&pointofsalecountry=US",
"rel": "shop"
}
],
"MaximumFare": 600,
"MedianFare": 350.75,
"MinimumFare": 150,
"OriginLocation": "LAX",
"ReturnDateTime": "2026-08-08T00:00:00"
},
{
"Count": "Low",
"CurrencyCode": "JPY",
"DepartureDateTime": "2026-08-20T00:00:00",
"DestinationLocation": "DEN",
"Links": [
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=SEA&destination=ATL&departuredate=2026-07-15&returndate=2026-07-18&pointofsalecountry=US",
"rel": "shop"
}
],
"MaximumFare": 2500,
"MedianFare": 520,
"MinimumFare": 180.25,
"OriginLocation": "PHX",
"ReturnDateTime": "2026-09-13T00:00:00"
}
],
"Links": [
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=LAX&destination=DEN&departuredate=2026-11-01&returndate=2026-11-04&pointofsalecountry=US",
"rel": "self"
},
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=DFW&destination=SFO&departuredate=2026-08-20&returndate=2026-08-23&pointofsalecountry=US",
"rel": "self"
},
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=DEN&destination=PHX&departuredate=2026-08-05&returndate=2026-08-08&pointofsalecountry=US",
"rel": "self"
},
{
"href": "https://api.cert.platform.sabre.com/v1/shop/flights?origin=LAX&destination=DEN&departuredate=2026-11-01&returndate=2026-11-04&pointofsalecountry=US",
"rel": "self"
}
],
"OriginLocation": "ATL"
}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.Service Homepage: developer.sabre.com/rest-api/fare-range/v1
sabretravelfaresanalyticsgds