Nov
30
Sun
American Airlines AA7618
4:33 AM – 4:00 PM
AMS → GRU
From CAD1786.66
flights / #118
4:33 AM – 4:00 PM
AMS → GRU
From CAD1786.66
curl -sS \
"https://example-data.com/api/v1/flights/118" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/118"
);
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/118"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/118"
)
flight = res.json() {
"id": 118,
"flightNumber": "AA7618",
"airline": "American Airlines",
"departureAirport": "AMS",
"arrivalAirport": "GRU",
"departureAt": "2025-11-30T04:33:25.811Z",
"arrivalAt": "2025-11-30T16:00:25.811Z",
"durationMinutes": 687,
"status": "boarding",
"priceFrom": 1786.66,
"currency": "CAD",
"createdAt": "2025-10-31T04:33:25.811Z"
}