Feb
10
Tue
American Airlines AA3740
1:58 AM – 11:57 AM
NRT → DFW
From SGD 1096.30
Overview
flights / #350
1:58 AM – 11:57 AM
NRT → DFW
From SGD 1096.30
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/350" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/350" ); 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/350"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/350"
)
flight = res.json() Response
{
"id": 350,
"flightNumber": "AA3740",
"airline": "American Airlines",
"departureAirport": "NRT",
"arrivalAirport": "DFW",
"departureAt": "2026-02-10T01:58:08.725Z",
"arrivalAt": "2026-02-10T11:57:08.725Z",
"durationMinutes": 599,
"status": "scheduled",
"priceFrom": 1096.3,
"currency": "SGD",
"createdAt": "2025-12-25T01:58:08.725Z"
}