Jul
28
Tue
Delta Air Lines DL4131
11:37 PM – 1:55 PM
LHR → DFW
From AUD 712.71
Overview
flights / #162
11:37 PM – 1:55 PM
LHR → DFW
From AUD 712.71
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/162" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/162" ); 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/162"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/162"
)
flight = res.json() Response
{
"id": 162,
"flightNumber": "DL4131",
"airline": "Delta Air Lines",
"departureAirport": "LHR",
"arrivalAirport": "DFW",
"departureAt": "2026-07-28T23:37:30.331Z",
"arrivalAt": "2026-07-29T13:55:30.331Z",
"durationMinutes": 858,
"status": "delayed",
"priceFrom": 712.71,
"currency": "AUD",
"createdAt": "2026-05-18T23:37:30.331Z"
}