Aug
10
Sun
Southwest Airlines WN5082
2:47 PM – 6:58 PM
ICN → CDG
From USD1982.64
flights / #215
2:47 PM – 6:58 PM
ICN → CDG
From USD1982.64
curl -sS \
"https://example-data.com/api/v1/flights/215" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/215"
);
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/215"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/215"
)
flight = res.json() {
"id": 215,
"flightNumber": "WN5082",
"airline": "Southwest Airlines",
"departureAirport": "ICN",
"arrivalAirport": "CDG",
"departureAt": "2025-08-10T14:47:47.057Z",
"arrivalAt": "2025-08-10T18:58:47.057Z",
"durationMinutes": 251,
"status": "landed",
"priceFrom": 1982.64,
"currency": "USD",
"createdAt": "2025-07-21T14:47:47.057Z"
}