Nov
15
Sun
Delta Air Lines DL5722
9:17 PM – 6:06 AM
ICN → MEX
From JPY 1331.55
Overview
flights / #321
9:17 PM – 6:06 AM
ICN → MEX
From JPY 1331.55
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/321" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/321" ); const flight = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/flights.d.ts https://example-data.com/types/flights.d.ts
import type { Flight } from "./types/flights";
const res = await fetch(
"https://example-data.com/api/v1/flights/321"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/321"
)
flight = res.json() Response
{
"id": 321,
"flightNumber": "DL5722",
"airline": "Delta Air Lines",
"departureAirport": "ICN",
"arrivalAirport": "MEX",
"departureAt": "2026-11-15T21:17:20.081Z",
"arrivalAt": "2026-11-16T06:06:20.081Z",
"durationMinutes": 529,
"status": "boarding",
"priceFrom": 1331.55,
"currency": "JPY",
"createdAt": "2026-08-29T21:17:20.081Z"
}