Jul
4
Fri
Air France AF5088
8:03 PM – 2:28 AM
ICN → FCO
From JPY185.57
flights / #47
8:03 PM – 2:28 AM
ICN → FCO
From JPY185.57
curl -sS \
"https://example-data.com/api/v1/flights/47" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/47"
);
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/47"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/47"
)
flight = res.json() {
"id": 47,
"flightNumber": "AF5088",
"airline": "Air France",
"departureAirport": "ICN",
"arrivalAirport": "FCO",
"departureAt": "2025-07-04T20:03:42.115Z",
"arrivalAt": "2025-07-05T02:28:42.115Z",
"durationMinutes": 385,
"status": "boarding",
"priceFrom": 185.57,
"currency": "JPY",
"createdAt": "2025-06-10T20:03:42.115Z"
}