Aug
10
Sun
American Airlines AA5147
5:21 AM – 6:09 PM
AMS → SIN
From AUD 361.46
Overview
flights / #58
5:21 AM – 6:09 PM
AMS → SIN
From AUD 361.46
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/58" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/58" ); 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/58"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/58"
)
flight = res.json() Response
{
"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"
}