GET
/v1/flight-statusGet flight status
Retrieve status for a flight on a date.
Part of Flight Status API· Rate limits: Plan-based
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| flight | query | string | Yes | IATA flight number, e.g. AI101 |
| date | query | string | Yes | Date 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
- 400 — Invalid parameters
- 401 — Missing or invalid API key
- 404 — Flight not found
Try this endpoint
API Playground
Flight Status API
GET
yypop.apiseeker.comhttps://yypop.apiseeker.com/v1/flight-statusStatus: —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"