example-data.com

flights / #154

Jan
26
Mon

Air France AF7488

10:00 PM – 12:14 AM

ATL → AMS

From SGD618.82

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/154"
)
flight = res.json()
{
  "id": 154,
  "flightNumber": "AF7488",
  "airline": "Air France",
  "departureAirport": "ATL",
  "arrivalAirport": "AMS",
  "departureAt": "2026-01-26T22:00:51.010Z",
  "arrivalAt": "2026-01-27T00:14:51.010Z",
  "durationMinutes": 134,
  "status": "landed",
  "priceFrom": 618.82,
  "currency": "SGD",
  "createdAt": "2026-01-12T22:00:51.010Z"
}
Draftbit