Aug
2
Sun
Delta Air Lines DL9589
8:36 AM – 10:35 AM
ORD → BCN
From AED 1862.86
Overview
flights / #33
8:36 AM – 10:35 AM
ORD → BCN
From AED 1862.86
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/33" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/33" ); 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/33"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/33"
)
flight = res.json() Response
{
"id": 33,
"flightNumber": "DL9589",
"airline": "Delta Air Lines",
"departureAirport": "ORD",
"arrivalAirport": "BCN",
"departureAt": "2026-08-02T08:36:28.308Z",
"arrivalAt": "2026-08-02T10:35:28.308Z",
"durationMinutes": 119,
"status": "in_air",
"priceFrom": 1862.86,
"currency": "AED",
"createdAt": "2026-06-24T08:36:28.308Z"
}