Jan
17
Sun
Japan Airlines JL7192
4:55 AM – 8:54 AM
JFK → GRU
From AED2141.54
flights / #211
4:55 AM – 8:54 AM
JFK → GRU
From AED2141.54
curl -sS \
"https://example-data.com/api/v1/flights/211" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/211"
);
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/211"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/211"
)
flight = res.json() {
"id": 211,
"flightNumber": "JL7192",
"airline": "Japan Airlines",
"departureAirport": "JFK",
"arrivalAirport": "GRU",
"departureAt": "2027-01-17T04:55:08.800Z",
"arrivalAt": "2027-01-17T08:54:08.800Z",
"durationMinutes": 239,
"status": "boarding",
"priceFrom": 2141.54,
"currency": "AED",
"createdAt": "2027-01-10T04:55:08.800Z"
}