Jun
13
Fri
Delta Air Lines DL2391
4:30 AM – 2:53 PM
BCN → SIN
From AED 1475.32
Overview
flights / #126
4:30 AM – 2:53 PM
BCN → SIN
From AED 1475.32
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/126" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/126" ); 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/126"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/126"
)
flight = res.json() Response
{
"id": 126,
"flightNumber": "DL2391",
"airline": "Delta Air Lines",
"departureAirport": "BCN",
"arrivalAirport": "SIN",
"departureAt": "2025-06-13T04:30:38.695Z",
"arrivalAt": "2025-06-13T14:53:38.695Z",
"durationMinutes": 623,
"status": "delayed",
"priceFrom": 1475.32,
"currency": "AED",
"createdAt": "2025-03-22T04:30:38.695Z"
}