Feb
22
Sun
American Airlines AA4064
9:15 AM – 4:16 PM
NRT → ORD
From AED 2347.17
Overview
flights / #91
9:15 AM – 4:16 PM
NRT → ORD
From AED 2347.17
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/91" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/91" ); 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/91"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/91"
)
flight = res.json() Response
{
"id": 91,
"flightNumber": "AA4064",
"airline": "American Airlines",
"departureAirport": "NRT",
"arrivalAirport": "ORD",
"departureAt": "2026-02-22T09:15:49.156Z",
"arrivalAt": "2026-02-22T16:16:49.156Z",
"durationMinutes": 421,
"status": "in_air",
"priceFrom": 2347.17,
"currency": "AED",
"createdAt": "2025-11-28T09:15:49.156Z"
}