Skip to content
APISeeker
GET/v1/flight-status

Get flight status

Retrieve status for a flight on a date.

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

Parameters

NameInTypeRequiredDescription
flightquerystringYesIATA flight number, e.g. AI101
datequerystringYesDate in YYYY-MM-DD

Code examples

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

Response

JSON
{
  "flight": "AI101",
  "date": "2026-08-13",
  "status": "Scheduled",
  "departure": {
    "airport": "DEL",
    "timeLocal": "08:00"
  },
  "arrival": {
    "airport": "BOM",
    "timeLocal": "10:15"
  }
}

Errors

  • 400Invalid parameters
  • 401Missing or invalid API key
  • 404Flight not found

Try this endpoint

API Playground

Flight Status API

Try it
GETyypop.apiseeker.com
https://yypop.apiseeker.com/v1/flight-status
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" \
  -H "X-API-Key: YOUR_API_KEY"