Flight Notifications Mock Server
Subscribe to and receive real-time flight-related event notifications.
The Flight Notifications API enables developers to subscribe to specific flight events and receive automated updates. This service facilitates the integration of real-time flight status tracking and operational event monitoring into travel applications.
Use this hosted mock server to simulate Flight Notifications 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 subscription request payloads, event trigger logic, notification delivery formats, and error handling for flight status changes or operational updates before integrating with live event streams.
Subscribe Flight
POST
{
"flights": [
{
"airlineCode": "XY",
"flightNumber": 900,
"scheduledDepartureDate": "2024-07-09"
},
{
"airlineCode": "AB",
"flightNumber": 1234,
"scheduledDepartureDate": "2024-07-09",
"operationalSuffix": "A"
}
]
}{
"results": [
{
"requestedFlight": {
"airlineCode": "XY",
"flightNumber": 900,
"scheduledDepartureDate": "2024-07-09"
},
"registeredFlights": [
{
"airlineCode": "YZ",
"flightNumber": 876,
"scheduledDepartureDate": "2024-07-09"
}
]
},
{
"requestedFlight": {
"airlineCode": "AB",
"flightNumber": 123,
"scheduledDepartureDate": "2024-07-09",
"operationalSuffix": "A"
},
"registeredFlights": [
{
"airlineCode": "AB",
"flightNumber": 123,
"scheduledDepartureDate": "2024-07-09",
"operationalSuffix": "A"
}
]
}
]
}{
"errors": [
{
"category": "BAD_REQUEST",
"type": "REQUIRED_FIELD_MISSING",
"description": "must not be empty",
"fieldName": "flightNumber"
},
{
"category": "BAD_REQUEST",
"type": "INVALID_VALUE",
"description": "must match format ^[A-Z0-9]{2,3}$",
"fieldName": "airlineCode",
"fieldValue": "332"
},
{
"category": "BAD_REQUEST",
"type": "INVALID_VALUE",
"description": "must match date format: YYYY-MM-DD",
"fieldName": "scheduledDepartureDate",
"fieldValue": "01-02-2023"
},
{
"category": "BAD_REQUEST",
"type": "INVALID_VALUE",
"description": "must match flight number format: integer between 1 and 9999",
"fieldName": "flightNumber",
"fieldValue": "0"
}
]
}Service Homepage: developer.sabre.com/rest-api/flight-notifications-api/v1
sabretravelflightnotificationseventsrest