Jan
15
Thu
Delta Air Lines DL8275
6:47 PM – 7:47 AM
SYD → FRA
From GBP 762.12
Overview
flights / #264
6:47 PM – 7:47 AM
SYD → FRA
From GBP 762.12
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/264" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/264" ); 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/264"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/264"
)
flight = res.json() Response
{
"id": 264,
"flightNumber": "DL8275",
"airline": "Delta Air Lines",
"departureAirport": "SYD",
"arrivalAirport": "FRA",
"departureAt": "2026-01-15T18:47:56.810Z",
"arrivalAt": "2026-01-16T07:47:56.810Z",
"durationMinutes": 780,
"status": "boarding",
"priceFrom": 762.12,
"currency": "GBP",
"createdAt": "2025-11-05T18:47:56.810Z"
}