Skip to content
APISeeker
GET/v1/flight-status/schedule

Get flight schedule

List scheduled legs for a flight number.

Part of Flight Status API· Rate limits: Plan-based

Parameters

NameInTypeRequiredDescription
flightquerystringYesIATA flight number, e.g. AI101

Code examples

cURL
curl -s "https://yypop.apiseeker.com/v1/flight-status/schedule" \
  -H "X-API-Key: YOUR_API_KEY"

Response

JSON
{
  "flight": "AI101",
  "schedule": [
    {
      "date": "2026-08-13",
      "status": "Scheduled",
      "departure": "DEL"
    }
  ]
}

Errors

  • 400Invalid parameters
  • 404Flight not found

Try this endpoint

API Playground

Flight Status API

Try it
GETyypop.apiseeker.com
https://yypop.apiseeker.com/v1/flight-status/schedule
Status: Latency:

Response headers

Send a request to see headers.

Response body

Response will appear here.

Generated snippets

cURL
curl -s "https://yypop.apiseeker.com/v1/flight-status/schedule" \
  -H "X-API-Key: YOUR_API_KEY"