example-data.com

flights / #56

Mar
11
Thu

Air France AF9630

7:23 AM – 9:31 PM

DXB → MEX

From SGD957.18

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/56"
)
flight = res.json()
{
  "id": 56,
  "flightNumber": "AF9630",
  "airline": "Air France",
  "departureAirport": "DXB",
  "arrivalAirport": "MEX",
  "departureAt": "2027-03-11T07:23:06.026Z",
  "arrivalAt": "2027-03-11T21:31:06.026Z",
  "durationMinutes": 848,
  "status": "cancelled",
  "priceFrom": 957.18,
  "currency": "SGD",
  "createdAt": "2026-12-31T07:23:06.026Z"
}
Draftbit