example-data.com

flights / #167

Nov
5
Thu

Emirates EK4936

11:44 AM – 11:15 PM

DFW → FCO

From SGD2115.09

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/167"
)
flight = res.json()
{
  "id": 167,
  "flightNumber": "EK4936",
  "airline": "Emirates",
  "departureAirport": "DFW",
  "arrivalAirport": "FCO",
  "departureAt": "2026-11-05T11:44:46.616Z",
  "arrivalAt": "2026-11-05T23:15:46.616Z",
  "durationMinutes": 691,
  "status": "in_air",
  "priceFrom": 2115.09,
  "currency": "SGD",
  "createdAt": "2026-09-27T11:44:46.616Z"
}
Draftbit