Aug
10
Sun
American Airlines AA5147
5:21 AM – 6:09 PM
AMS → SIN
From AUD361.46
flights / #58
5:21 AM – 6:09 PM
AMS → SIN
From AUD361.46
curl -sS \
"https://example-data.com/api/v1/flights/58" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/58"
);
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/58"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/58"
)
flight = res.json() {
"id": 58,
"flightNumber": "AA5147",
"airline": "American Airlines",
"departureAirport": "AMS",
"arrivalAirport": "SIN",
"departureAt": "2025-08-10T05:21:51.203Z",
"arrivalAt": "2025-08-10T18:09:51.203Z",
"durationMinutes": 768,
"status": "cancelled",
"priceFrom": 361.46,
"currency": "AUD",
"createdAt": "2025-07-29T05:21:51.203Z"
}