Apr
10
Fri
United Airlines UA5598
2:09 PM – 10:30 PM
CDG → SIN
From AED1996.76
flights / #2
2:09 PM – 10:30 PM
CDG → SIN
From AED1996.76
curl -sS \
"https://example-data.com/api/v1/flights/2" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/2"
);
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/2"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/2"
)
flight = res.json() {
"id": 2,
"flightNumber": "UA5598",
"airline": "United Airlines",
"departureAirport": "CDG",
"arrivalAirport": "SIN",
"departureAt": "2026-04-10T14:09:05.599Z",
"arrivalAt": "2026-04-10T22:30:05.599Z",
"durationMinutes": 501,
"status": "scheduled",
"priceFrom": 1996.76,
"currency": "AED",
"createdAt": "2026-03-11T14:09:05.599Z"
}