example-data.com

flights / #128

Feb
25
Wed

Delta Air Lines DL9020

12:42 AM – 1:59 PM

NRT → LHR

From AED812.07

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/128"
)
flight = res.json()
{
  "id": 128,
  "flightNumber": "DL9020",
  "airline": "Delta Air Lines",
  "departureAirport": "NRT",
  "arrivalAirport": "LHR",
  "departureAt": "2026-02-25T00:42:21.169Z",
  "arrivalAt": "2026-02-25T13:59:21.169Z",
  "durationMinutes": 797,
  "status": "boarding",
  "priceFrom": 812.07,
  "currency": "AED",
  "createdAt": "2026-01-19T00:42:21.169Z"
}
Draftbit