example-data.com

flights / #69

Aug
10
Sun

Emirates EK5371

2:08 PM – 6:42 PM

ICN → ATL

From USD94.51

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/69"
)
flight = res.json()
{
  "id": 69,
  "flightNumber": "EK5371",
  "airline": "Emirates",
  "departureAirport": "ICN",
  "arrivalAirport": "ATL",
  "departureAt": "2025-08-10T14:08:32.733Z",
  "arrivalAt": "2025-08-10T18:42:32.733Z",
  "durationMinutes": 274,
  "status": "scheduled",
  "priceFrom": 94.51,
  "currency": "USD",
  "createdAt": "2025-06-21T14:08:32.733Z"
}
Draftbit