Mar
6
Fri
American Airlines AA5072
7:36 PM – 2:29 AM
BCN → AMS
From CAD 1328.51
Overview
flights / #376
7:36 PM – 2:29 AM
BCN → AMS
From CAD 1328.51
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/376" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/376" ); 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/376"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/376"
)
flight = res.json() Response
{
"id": 376,
"flightNumber": "AA5072",
"airline": "American Airlines",
"departureAirport": "BCN",
"arrivalAirport": "AMS",
"departureAt": "2026-03-06T19:36:53.769Z",
"arrivalAt": "2026-03-07T02:29:53.769Z",
"durationMinutes": 413,
"status": "landed",
"priceFrom": 1328.51,
"currency": "CAD",
"createdAt": "2026-02-27T19:36:53.769Z"
}