Apr
5
Sun
Delta Air Lines DL2514
12:29 PM – 10:23 PM
JFK → SIN
From USD 1687.64
Overview
flights / #52
12:29 PM – 10:23 PM
JFK → SIN
From USD 1687.64
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/52" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/52" ); 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/52"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/52"
)
flight = res.json() Response
{
"id": 52,
"flightNumber": "DL2514",
"airline": "Delta Air Lines",
"departureAirport": "JFK",
"arrivalAirport": "SIN",
"departureAt": "2026-04-05T12:29:08.358Z",
"arrivalAt": "2026-04-05T22:23:08.358Z",
"durationMinutes": 594,
"status": "cancelled",
"priceFrom": 1687.64,
"currency": "USD",
"createdAt": "2026-01-22T12:29:08.358Z"
}