Sep
25
Thu
Delta Air Lines DL639
11:14 PM – 1:16 PM
DFW → LHR
From GBP 543.93
Overview
flights / #205
11:14 PM – 1:16 PM
DFW → LHR
From GBP 543.93
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/205" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/205" ); 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/205"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/205"
)
flight = res.json() Response
{
"id": 205,
"flightNumber": "DL639",
"airline": "Delta Air Lines",
"departureAirport": "DFW",
"arrivalAirport": "LHR",
"departureAt": "2025-09-25T23:14:01.340Z",
"arrivalAt": "2025-09-26T13:16:01.340Z",
"durationMinutes": 842,
"status": "landed",
"priceFrom": 543.93,
"currency": "GBP",
"createdAt": "2025-08-24T23:14:01.340Z"
}