May
22
Thu
Air France AF1294
11:23 AM – 3:37 PM
MAD → ICN
From USD772.03
flights / #1
11:23 AM – 3:37 PM
MAD → ICN
From USD772.03
curl -sS \
"https://example-data.com/api/v1/flights/1" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/1"
);
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/1"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/1"
)
flight = res.json() {
"id": 1,
"flightNumber": "AF1294",
"airline": "Air France",
"departureAirport": "MAD",
"arrivalAirport": "ICN",
"departureAt": "2025-05-22T11:23:57.954Z",
"arrivalAt": "2025-05-22T15:37:57.954Z",
"durationMinutes": 254,
"status": "in_air",
"priceFrom": 772.03,
"currency": "USD",
"createdAt": "2025-02-23T11:23:57.954Z"
}