May
15
Sat
Delta Air Lines DL9502
3:25 PM – 12:43 AM
LAX → MAD
From SGD 789.93
Overview
flights / #98
3:25 PM – 12:43 AM
LAX → MAD
From SGD 789.93
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/98" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/98" ); 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/98"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/98"
)
flight = res.json() Response
{
"id": 98,
"flightNumber": "DL9502",
"airline": "Delta Air Lines",
"departureAirport": "LAX",
"arrivalAirport": "MAD",
"departureAt": "2027-05-15T15:25:10.263Z",
"arrivalAt": "2027-05-16T00:43:10.263Z",
"durationMinutes": 558,
"status": "landed",
"priceFrom": 789.93,
"currency": "SGD",
"createdAt": "2027-04-11T15:25:10.263Z"
}