example-data.com

flights / #53

Aug
24
Mon

Air France AF7251

8:07 AM – 4:36 PM

MAD → ATL

From GBP886.11

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/53"
)
flight = res.json()
{
  "id": 53,
  "flightNumber": "AF7251",
  "airline": "Air France",
  "departureAirport": "MAD",
  "arrivalAirport": "ATL",
  "departureAt": "2026-08-24T08:07:22.878Z",
  "arrivalAt": "2026-08-24T16:36:22.878Z",
  "durationMinutes": 509,
  "status": "boarding",
  "priceFrom": 886.11,
  "currency": "GBP",
  "createdAt": "2026-06-19T08:07:22.878Z"
}
Draftbit