May
21
Fri
American Airlines AA6375
3:50 AM – 4:16 PM
DFW → JFK
From SGD 970.90
Overview
flights / #235
3:50 AM – 4:16 PM
DFW → JFK
From SGD 970.90
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/235" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/235" ); 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/235"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/235"
)
flight = res.json() Response
{
"id": 235,
"flightNumber": "AA6375",
"airline": "American Airlines",
"departureAirport": "DFW",
"arrivalAirport": "JFK",
"departureAt": "2027-05-21T03:50:25.635Z",
"arrivalAt": "2027-05-21T16:16:25.635Z",
"durationMinutes": 746,
"status": "cancelled",
"priceFrom": 970.9,
"currency": "SGD",
"createdAt": "2027-05-05T03:50:25.635Z"
}