example-data.com

flights / #96

Feb
4
Wed

Japan Airlines JL7645

8:26 AM – 2:04 PM

DFW → LHR

From GBP776.20

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/96"
)
flight = res.json()
{
  "id": 96,
  "flightNumber": "JL7645",
  "airline": "Japan Airlines",
  "departureAirport": "DFW",
  "arrivalAirport": "LHR",
  "departureAt": "2026-02-04T08:26:23.146Z",
  "arrivalAt": "2026-02-04T14:04:23.146Z",
  "durationMinutes": 338,
  "status": "delayed",
  "priceFrom": 776.2,
  "currency": "GBP",
  "createdAt": "2025-12-03T08:26:23.146Z"
}
Draftbit