Jun
11
Wed
British Airways BA8890
10:16 PM – 9:23 AM
CDG → ICN
From USD 1932.66
Overview
flights / #189
10:16 PM – 9:23 AM
CDG → ICN
From USD 1932.66
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/189" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/189" ); 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/189"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/189"
)
flight = res.json() Response
{
"id": 189,
"flightNumber": "BA8890",
"airline": "British Airways",
"departureAirport": "CDG",
"arrivalAirport": "ICN",
"departureAt": "2025-06-11T22:16:09.341Z",
"arrivalAt": "2025-06-12T09:23:09.341Z",
"durationMinutes": 667,
"status": "scheduled",
"priceFrom": 1932.66,
"currency": "USD",
"createdAt": "2025-05-30T22:16:09.341Z"
}