example-data.com

flights / #126

Jun
13
Fri

Delta Air Lines DL2391

4:30 AM – 2:53 PM

BCN → SIN

From AED1475.32

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/126"
)
flight = res.json()
{
  "id": 126,
  "flightNumber": "DL2391",
  "airline": "Delta Air Lines",
  "departureAirport": "BCN",
  "arrivalAirport": "SIN",
  "departureAt": "2025-06-13T04:30:38.695Z",
  "arrivalAt": "2025-06-13T14:53:38.695Z",
  "durationMinutes": 623,
  "status": "delayed",
  "priceFrom": 1475.32,
  "currency": "AED",
  "createdAt": "2025-03-22T04:30:38.695Z"
}
Draftbit