Jul
11
Sat
Delta Air Lines DL8139
3:57 AM – 8:50 AM
LHR → CDG
From SGD 737.14
Overview
flights / #104
3:57 AM – 8:50 AM
LHR → CDG
From SGD 737.14
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/104" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/104" ); 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/104"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/104"
)
flight = res.json() Response
{
"id": 104,
"flightNumber": "DL8139",
"airline": "Delta Air Lines",
"departureAirport": "LHR",
"arrivalAirport": "CDG",
"departureAt": "2026-07-11T03:57:57.227Z",
"arrivalAt": "2026-07-11T08:50:57.227Z",
"durationMinutes": 293,
"status": "delayed",
"priceFrom": 737.14,
"currency": "SGD",
"createdAt": "2026-07-10T03:57:57.227Z"
}