Jan
12
Mon
Delta Air Lines DL4661
10:47 PM – 3:05 AM
BCN → CDG
From CAD808.21
flights / #151
10:47 PM – 3:05 AM
BCN → CDG
From CAD808.21
curl -sS \
"https://example-data.com/api/v1/flights/151" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/151"
);
const flight = await res.json();import type { Flight } from "https://example-data.com/types/flights.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/flights/151"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/151"
)
flight = res.json() {
"id": 151,
"flightNumber": "DL4661",
"airline": "Delta Air Lines",
"departureAirport": "BCN",
"arrivalAirport": "CDG",
"departureAt": "2026-01-12T22:47:50.312Z",
"arrivalAt": "2026-01-13T03:05:50.312Z",
"durationMinutes": 258,
"status": "scheduled",
"priceFrom": 808.21,
"currency": "CAD",
"createdAt": "2026-01-02T22:47:50.312Z"
}