Nov
6
Thu
Air France AF5597
10:52 AM – 1:51 AM
BCN → MAD
From CAD 1858.94
Overview
flights / #147
10:52 AM – 1:51 AM
BCN → MAD
From CAD 1858.94
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/147" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/147" ); 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/147"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/147"
)
flight = res.json() Response
{
"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"
}