Sep
17
Wed
Delta Air Lines DL5390
1:02 AM – 7:49 AM
JFK → DFW
From JPY 1491.40
Overview
flights / #122
1:02 AM – 7:49 AM
JFK → DFW
From JPY 1491.40
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/122" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/122" ); 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/122"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/122"
)
flight = res.json() Response
{
"id": 122,
"flightNumber": "DL5390",
"airline": "Delta Air Lines",
"departureAirport": "JFK",
"arrivalAirport": "DFW",
"departureAt": "2025-09-17T01:02:36.285Z",
"arrivalAt": "2025-09-17T07:49:36.285Z",
"durationMinutes": 407,
"status": "in_air",
"priceFrom": 1491.4,
"currency": "JPY",
"createdAt": "2025-09-11T01:02:36.285Z"
}