Oct
4
Sat
Air France AF3547
11:42 PM – 4:51 AM
ORD → CDG
From USD 1592.74
Overview
flights / #228
11:42 PM – 4:51 AM
ORD → CDG
From USD 1592.74
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/228" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/228" ); const flight = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/flights.d.ts https://example-data.com/types/flights.d.ts
import type { Flight } from "./types/flights";
const res = await fetch(
"https://example-data.com/api/v1/flights/228"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/228"
)
flight = res.json() Response
{
"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"
}