Jun
21
Sat
American Airlines AA3964
6:55 PM – 7:10 AM
NRT → GRU
From SGD244.12
flights / #30
6:55 PM – 7:10 AM
NRT → GRU
From SGD244.12
curl -sS \
"https://example-data.com/api/v1/flights/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/30"
);
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/30"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/30"
)
flight = res.json() {
"id": 30,
"flightNumber": "AA3964",
"airline": "American Airlines",
"departureAirport": "NRT",
"arrivalAirport": "GRU",
"departureAt": "2025-06-21T18:55:09.006Z",
"arrivalAt": "2025-06-22T07:10:09.006Z",
"durationMinutes": 735,
"status": "in_air",
"priceFrom": 244.12,
"currency": "SGD",
"createdAt": "2025-05-28T18:55:09.006Z"
}