Travel Seasonality Mock Server
Retrieve traffic volume ratings for destinations by week.
The Travel Seasonality API provides historical traffic volume ratings for specific destinations across each week of the year. It helps developers integrate seasonal demand data into travel planning and forecasting applications.
Use this hosted mock server to simulate Travel Seasonality 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 seasonal demand data retrieval, destination-based traffic volume parsing, and date-range filtering logic to ensure your application correctly interprets travel popularity trends before connecting to live Sabre systems.
General
GET
{
"DestinationLocation": "SEA",
"Links": [
{
"href": "https://api.cert.platform.sabre.com/v1/historical/flights/SFO/seasonality",
"rel": "self"
},
{
"href": "https://api.cert.platform.sabre.com/v1/historical/flights/ORD/seasonality",
"rel": "self"
}
],
"Seasonality": [
{
"NumberOfObservations": "GreaterThan10000",
"SeasonalityIndicator": "High",
"WeekEndDate": "2026-02-04T00:00:00",
"WeekStartDate": "2026-01-15T00:00:00",
"YearWeekNumber": 10
},
{
"NumberOfObservations": "LessThan10000",
"SeasonalityIndicator": "Low",
"WeekEndDate": "2026-02-04T00:00:00",
"WeekStartDate": "2026-02-19T00:00:00",
"YearWeekNumber": 10
},
{
"NumberOfObservations": "LessThan10000",
"SeasonalityIndicator": "Low",
"WeekEndDate": "2026-02-11T00:00:00",
"WeekStartDate": "2026-02-05T00:00:00",
"YearWeekNumber": 1
},
{
"NumberOfObservations": "GreaterThan10000",
"SeasonalityIndicator": "High",
"WeekEndDate": "2026-01-07T00:00:00",
"WeekStartDate": "2026-02-19T00:00:00",
"YearWeekNumber": 5
},
{
"NumberOfObservations": "LessThan1000",
"SeasonalityIndicator": "High",
"WeekEndDate": "2026-03-11T00:00:00",
"WeekStartDate": "2026-01-01T00:00:00",
"YearWeekNumber": 5
}
]
}Missing schema or example in the OpenAPI spec.
Update the definition and recreate the mock server.Service Homepage: developer.sabre.com/rest-api/travel-seasonality/v1
sabretravelseasonalityanalyticsrest