Oct
21
Wed
Delta Air Lines DL4096
7:49 AM – 5:08 PM
AMS → ORD
From SGD 528.40
Overview
flights / #31
7:49 AM – 5:08 PM
AMS → ORD
From SGD 528.40
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/31" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/31" ); 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/31"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/31"
)
flight = res.json() Response
{
"id": 31,
"flightNumber": "DL4096",
"airline": "Delta Air Lines",
"departureAirport": "AMS",
"arrivalAirport": "ORD",
"departureAt": "2026-10-21T07:49:10.828Z",
"arrivalAt": "2026-10-21T17:08:10.828Z",
"durationMinutes": 559,
"status": "in_air",
"priceFrom": 528.4,
"currency": "SGD",
"createdAt": "2026-09-26T07:49:10.828Z"
}