Jul
4
Fri
Air France AF5088
8:03 PM – 2:28 AM
ICN → FCO
From JPY 185.57
Overview
flights / #47
8:03 PM – 2:28 AM
ICN → FCO
From JPY 185.57
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/47" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/47" ); const flight = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/flights.d.ts https://example-data.com/types/flights.d.ts
import type { Flight } from "./types/flights";
const res = await fetch(
"https://example-data.com/api/v1/flights/47"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/47"
)
flight = res.json() Response
{
"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"
}