Mar
21
Sun
Air France AF7325
5:11 AM – 8:05 AM
MAD → LAX
From JPY582.51
flights / #116
5:11 AM – 8:05 AM
MAD → LAX
From JPY582.51
curl -sS \
"https://example-data.com/api/v1/flights/116" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/116"
);
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/116"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/116"
)
flight = res.json() {
"id": 116,
"flightNumber": "AF7325",
"airline": "Air France",
"departureAirport": "MAD",
"arrivalAirport": "LAX",
"departureAt": "2027-03-21T05:11:45.612Z",
"arrivalAt": "2027-03-21T08:05:45.612Z",
"durationMinutes": 174,
"status": "scheduled",
"priceFrom": 582.51,
"currency": "JPY",
"createdAt": "2026-12-23T05:11:45.612Z"
}