example-data.com

flights / #207

Aug
3
Sun

Air France AF2537

10:25 AM – 1:04 AM

FRA → MEX

From AUD1411.11

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/207"
)
flight = res.json()
{
  "id": 207,
  "flightNumber": "AF2537",
  "airline": "Air France",
  "departureAirport": "FRA",
  "arrivalAirport": "MEX",
  "departureAt": "2025-08-03T10:25:05.184Z",
  "arrivalAt": "2025-08-04T01:04:05.184Z",
  "durationMinutes": 879,
  "status": "boarding",
  "priceFrom": 1411.11,
  "currency": "AUD",
  "createdAt": "2025-07-02T10:25:05.184Z"
}
Draftbit