Feb
9
Mon
Singapore Airlines SQ8182
4:48 PM – 4:42 AM
MAD → GRU
From SGD141.96
flights / #196
4:48 PM – 4:42 AM
MAD → GRU
From SGD141.96
curl -sS \
"https://example-data.com/api/v1/flights/196" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/196"
);
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/196"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/196"
)
flight = res.json() {
"id": 196,
"flightNumber": "SQ8182",
"airline": "Singapore Airlines",
"departureAirport": "MAD",
"arrivalAirport": "GRU",
"departureAt": "2026-02-09T16:48:05.503Z",
"arrivalAt": "2026-02-10T04:42:05.503Z",
"durationMinutes": 714,
"status": "delayed",
"priceFrom": 141.96,
"currency": "SGD",
"createdAt": "2025-12-25T16:48:05.503Z"
}