example-data.com

flights / #189

Jun
11
Wed

British Airways BA8890

10:16 PM – 9:23 AM

CDG → ICN

From USD1932.66

Component variants

curl -sS \
  "https://example-data.com/api/v1/flights/189" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/flights/189"
);
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/189"
);
const flight = (await res.json()) as Flight;
import requests

res = requests.get(
    "https://example-data.com/api/v1/flights/189"
)
flight = res.json()
{
  "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"
}
Draftbit