Schedule Change Predictor Mock Server

Forecast flight schedule changes using online and batch prediction models.

The Schedule Change Predictor API provides tools to forecast flight schedule changes. It supports online prediction for specific flight details and batch processing to analyze multiple flights against filter criteria, helping developers integrate proactive schedule management into their travel applications.

Use this hosted mock server to simulate Schedule Change Predictor 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 flight schedule change prediction logic, test batch request filtering, verify response data structures for predicted disruptions, and ensure your application correctly handles various flight status scenarios before integrating with live Sabre systems.

Schedule Change Predictor mock server is up and running!

Use this mock URL as the API base in your code to simulate Schedule Change Predictor responses instantly.

https://sabre-schedule-change-predictor.mock.beeceptor.com



Schedule Change Predictor(2 operations)

{
  "flights": [
    {
      "operatingAirlineCode": "AA",
      "operatingFlightNumber": 8632,
      "legSequenceNumber": 1,
      "departureDate": "2026-07-13",
      "departureTime": "09:15:30",
      "arrivalTime": "09:15:30",
      "departureAirportCode": "MAD",
      "arrivalAirportCode": "DFW",
      "aircraftCode": "330"
    }
  ]
}
{
  "numberOfPredictions": 1,
  "predictions": {
    "PredictionResult": [
      {
        "flightDetails": {
          "operatingAirlineCode\"": "AA",
          "operatingFlightNumber": 8632,
          "departureDate": "2026-07-13",
          "departureAirportCode": "MAD",
          "arrivalAirportCode": "DFW"
        },
        "cancelPrediction": 0.01,
        "retimePredictions": {
          "RetimePrediction": [
            {
              "upperBoundInMinutes": -120,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": -120,
              "upperBoundInMinutes": -60,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": -60,
              "upperBoundInMinutes": -15,
              "probability": 0.03
            },
            {
              "lowerBoundInMinutes": 15,
              "upperBoundInMinutes": 60,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": 60,
              "upperBoundInMinutes": 120,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": 120,
              "probability": 0
            }
          ]
        }
      }
    ]
  }
}
{
  "operatingAirlineCode": "AA",
  "operatingFlightNumber": 8632,
  "startDate": "2026-07-13",
  "endDate": "2026-07-15",
  "departureAirportCode": "MAD",
  "arrivalAirportCode": "DFW",
  "cancelProbabilityGreaterThan": 0.3,
  "retimeProbabilityGreaterThan": 0
}
{
  "numberOfPredictions": 3,
  "predictions": {
    "PredictionResult": [
      {
        "flightDetails": {
          "operatingAirlineCode\"": "AA",
          "operatingFlightNumber": 8632,
          "departureDate": "2026-07-13",
          "departureAirportCode": "MAD",
          "arrivalAirportCode": "DFW"
        },
        "cancelPrediction": 0.01,
        "retimePredictions": {
          "RetimePrediction": [
            {
              "upperBoundInMinutes": -120,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": -120,
              "upperBoundInMinutes": -60,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": -60,
              "upperBoundInMinutes": -15,
              "probability": 0.03
            },
            {
              "lowerBoundInMinutes": 15,
              "upperBoundInMinutes": 60,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": 60,
              "upperBoundInMinutes": 120,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": 120,
              "probability": 0
            }
          ]
        }
      },
      {
        "flightDetails": {
          "operatingAirlineCode\"": "AA",
          "operatingFlightNumber": 8632,
          "departureDate": "2026-07-14",
          "departureAirportCode": "MAD",
          "arrivalAirportCode": "DFW"
        },
        "cancelPrediction": 0.01,
        "retimePredictions": {
          "RetimePrediction": [
            {
              "upperBoundInMinutes": -120,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": -120,
              "upperBoundInMinutes": -60,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": -60,
              "upperBoundInMinutes": -15,
              "probability": 0.05
            },
            {
              "lowerBoundInMinutes": 15,
              "upperBoundInMinutes": 60,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": 60,
              "upperBoundInMinutes": 120,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": 120,
              "probability": 0
            }
          ]
        }
      },
      {
        "flightDetails": {
          "operatingAirlineCode\"": "AA",
          "operatingFlightNumber": 8632,
          "departureDate": "2026-07-15",
          "departureAirportCode": "MAD",
          "arrivalAirportCode": "DFW"
        },
        "cancelPrediction": 0.01,
        "retimePredictions": {
          "RetimePrediction": [
            {
              "upperBoundInMinutes": -120,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": -120,
              "upperBoundInMinutes": -60,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": -60,
              "upperBoundInMinutes": -15,
              "probability": 0.01
            },
            {
              "lowerBoundInMinutes": 15,
              "upperBoundInMinutes": 60,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": 60,
              "upperBoundInMinutes": 120,
              "probability": 0
            },
            {
              "lowerBoundInMinutes": 120,
              "probability": 0
            }
          ]
        }
      }
    ]
  }
}
sabretravelaviationflightsschedule-management