Jun
21
Sat
American Airlines AA3964
6:55 PM – 7:10 AM
NRT → GRU
From SGD 244.12
Overview
flights / #30
6:55 PM – 7:10 AM
NRT → GRU
From SGD 244.12
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/30" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/30" ); 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/30"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/30"
)
flight = res.json() Response
{
"id": 30,
"flightNumber": "AA3964",
"airline": "American Airlines",
"departureAirport": "NRT",
"arrivalAirport": "GRU",
"departureAt": "2025-06-21T18:55:09.006Z",
"arrivalAt": "2025-06-22T07:10:09.006Z",
"durationMinutes": 735,
"status": "in_air",
"priceFrom": 244.12,
"currency": "SGD",
"createdAt": "2025-05-28T18:55:09.006Z"
}