Nov
6
Thu
Air France AF5597
10:52 AM – 1:51 AM
BCN → MAD
From CAD1858.94
flights / #147
10:52 AM – 1:51 AM
BCN → MAD
From CAD1858.94
curl -sS \
"https://example-data.com/api/v1/flights/147" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/147"
);
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/147"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/147"
)
flight = res.json() {
"id": 147,
"flightNumber": "AF5597",
"airline": "Air France",
"departureAirport": "BCN",
"arrivalAirport": "MAD",
"departureAt": "2025-11-06T10:52:30.460Z",
"arrivalAt": "2025-11-07T01:51:30.460Z",
"durationMinutes": 899,
"status": "landed",
"priceFrom": 1858.94,
"currency": "CAD",
"createdAt": "2025-10-08T10:52:30.460Z"
}