Jan
12
Mon
Delta Air Lines DL4661
10:47 PM – 3:05 AM
BCN → CDG
From CAD 808.21
Overview
flights / #151
10:47 PM – 3:05 AM
BCN → CDG
From CAD 808.21
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/151" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/151" ); 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/151"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/151"
)
flight = res.json() Response
{
"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"
}