example-data.com

flights / #228

Oct
4
Sat

Air France AF3547

11:42 PM – 4:51 AM

ORD → CDG

From USD1592.74

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/flights/228"
)
flight = res.json()
{
  "id": 228,
  "flightNumber": "AF3547",
  "airline": "Air France",
  "departureAirport": "ORD",
  "arrivalAirport": "CDG",
  "departureAt": "2025-10-04T23:42:45.046Z",
  "arrivalAt": "2025-10-05T04:51:45.046Z",
  "durationMinutes": 309,
  "status": "landed",
  "priceFrom": 1592.74,
  "currency": "USD",
  "createdAt": "2025-08-04T23:42:45.046Z"
}
Draftbit