Jun
29
Sun
British Airways BA362
5:18 PM – 8:58 PM
DXB → SIN
From USD 1588.12
Overview
flights / #380
5:18 PM – 8:58 PM
DXB → SIN
From USD 1588.12
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/380" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/380" ); 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/380"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/380"
)
flight = res.json() Response
{
"id": 380,
"flightNumber": "BA362",
"airline": "British Airways",
"departureAirport": "DXB",
"arrivalAirport": "SIN",
"departureAt": "2025-06-29T17:18:37.066Z",
"arrivalAt": "2025-06-29T20:58:37.066Z",
"durationMinutes": 220,
"status": "landed",
"priceFrom": 1588.12,
"currency": "USD",
"createdAt": "2025-05-13T17:18:37.066Z"
}