Jun
16
Tue
American Airlines AA5542
3:40 PM – 5:36 PM
GRU → ATL
From CAD287.16
flights / #27
3:40 PM – 5:36 PM
GRU → ATL
From CAD287.16
curl -sS \
"https://example-data.com/api/v1/flights/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/27"
);
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/27"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/27"
)
flight = res.json() {
"id": 27,
"flightNumber": "AA5542",
"airline": "American Airlines",
"departureAirport": "GRU",
"arrivalAirport": "ATL",
"departureAt": "2026-06-16T15:40:27.086Z",
"arrivalAt": "2026-06-16T17:36:27.086Z",
"durationMinutes": 116,
"status": "delayed",
"priceFrom": 287.16,
"currency": "CAD",
"createdAt": "2026-05-20T15:40:27.086Z"
}