Aug
28
Thu
Delta Air Lines DL1750
4:17 AM – 1:32 PM
CDG → JFK
From JPY2482.90
flights / #193
4:17 AM – 1:32 PM
CDG → JFK
From JPY2482.90
curl -sS \
"https://example-data.com/api/v1/flights/193" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/193"
);
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/193"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/193"
)
flight = res.json() {
"id": 193,
"flightNumber": "DL1750",
"airline": "Delta Air Lines",
"departureAirport": "CDG",
"arrivalAirport": "JFK",
"departureAt": "2025-08-28T04:17:07.036Z",
"arrivalAt": "2025-08-28T13:32:07.036Z",
"durationMinutes": 555,
"status": "boarding",
"priceFrom": 2482.9,
"currency": "JPY",
"createdAt": "2025-08-15T04:17:07.036Z"
}