example-data.com

flights / #231

Sep
20
Sat

American Airlines AA2839

9:14 AM – 9:40 PM

MEX → ATL

From AUD972.63

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/231"
)
flight = res.json()
{
  "id": 231,
  "flightNumber": "AA2839",
  "airline": "American Airlines",
  "departureAirport": "MEX",
  "arrivalAirport": "ATL",
  "departureAt": "2025-09-20T09:14:15.026Z",
  "arrivalAt": "2025-09-20T21:40:15.026Z",
  "durationMinutes": 746,
  "status": "in_air",
  "priceFrom": 972.63,
  "currency": "AUD",
  "createdAt": "2025-07-13T09:14:15.026Z"
}
Draftbit