Feb
22
Sun
American Airlines AA4064
9:15 AM – 4:16 PM
NRT → ORD
From AED2347.17
flights / #91
9:15 AM – 4:16 PM
NRT → ORD
From AED2347.17
curl -sS \
"https://example-data.com/api/v1/flights/91" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/91"
);
const flight = await res.json();import type { Flight } from "https://example-data.com/types/flights.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/flights/91"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/91"
)
flight = res.json() {
"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"
}