Mar
11
Thu
Air France AF9630
7:23 AM – 9:31 PM
DXB → MEX
From SGD 957.18
Overview
flights / #56
7:23 AM – 9:31 PM
DXB → MEX
From SGD 957.18
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/56" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/56" ); 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/56"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/56"
)
flight = res.json() Response
{
"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"
}