example-data.com

flights / #190

Jun
20
Sat

Emirates EK3857

10:33 PM – 2:51 AM

MEX → BCN

From AED1038.91

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/190"
)
flight = res.json()
{
  "id": 190,
  "flightNumber": "EK3857",
  "airline": "Emirates",
  "departureAirport": "MEX",
  "arrivalAirport": "BCN",
  "departureAt": "2026-06-20T22:33:15.448Z",
  "arrivalAt": "2026-06-21T02:51:15.448Z",
  "durationMinutes": 258,
  "status": "boarding",
  "priceFrom": 1038.91,
  "currency": "AED",
  "createdAt": "2026-05-01T22:33:15.448Z"
}
Draftbit