May
22
Fri
Air France AF7015
6:33 PM – 9:27 PM
SYD → JFK
From AED1908.54
flights / #121
6:33 PM – 9:27 PM
SYD → JFK
From AED1908.54
curl -sS \
"https://example-data.com/api/v1/flights/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/121"
);
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/121"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/121"
)
flight = res.json() {
"id": 121,
"flightNumber": "AF7015",
"airline": "Air France",
"departureAirport": "SYD",
"arrivalAirport": "JFK",
"departureAt": "2026-05-22T18:33:29.344Z",
"arrivalAt": "2026-05-22T21:27:29.344Z",
"durationMinutes": 174,
"status": "landed",
"priceFrom": 1908.54,
"currency": "AED",
"createdAt": "2026-05-06T18:33:29.344Z"
}