Jul
24
Thu
Air France AF3322
7:37 PM – 5:16 AM
GRU → FRA
From CAD1355.00
flights / #210
7:37 PM – 5:16 AM
GRU → FRA
From CAD1355.00
curl -sS \
"https://example-data.com/api/v1/flights/210" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/210"
);
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/210"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/210"
)
flight = res.json() {
"id": 210,
"flightNumber": "AF3322",
"airline": "Air France",
"departureAirport": "GRU",
"arrivalAirport": "FRA",
"departureAt": "2025-07-24T19:37:03.437Z",
"arrivalAt": "2025-07-25T05:16:03.437Z",
"durationMinutes": 579,
"status": "cancelled",
"priceFrom": 1355,
"currency": "CAD",
"createdAt": "2025-05-14T19:37:03.437Z"
}