May
24
Sat
British Airways BA2489
3:43 PM – 5:28 PM
BCN → CDG
From JPY507.75
flights / #178
3:43 PM – 5:28 PM
BCN → CDG
From JPY507.75
curl -sS \
"https://example-data.com/api/v1/flights/178" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/178"
);
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/178"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/178"
)
flight = res.json() {
"id": 178,
"flightNumber": "BA2489",
"airline": "British Airways",
"departureAirport": "BCN",
"arrivalAirport": "CDG",
"departureAt": "2025-05-24T15:43:14.228Z",
"arrivalAt": "2025-05-24T17:28:14.228Z",
"durationMinutes": 105,
"status": "cancelled",
"priceFrom": 507.75,
"currency": "JPY",
"createdAt": "2025-05-19T15:43:14.228Z"
}