Jun
20
Sat
Japan Airlines JL9136
12:48 AM – 6:10 AM
GRU → JFK
From GBP855.28
flights / #192
12:48 AM – 6:10 AM
GRU → JFK
From GBP855.28
curl -sS \
"https://example-data.com/api/v1/flights/192" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/192"
);
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/192"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/192"
)
flight = res.json() {
"id": 192,
"flightNumber": "JL9136",
"airline": "Japan Airlines",
"departureAirport": "GRU",
"arrivalAirport": "JFK",
"departureAt": "2026-06-20T00:48:29.436Z",
"arrivalAt": "2026-06-20T06:10:29.436Z",
"durationMinutes": 322,
"status": "cancelled",
"priceFrom": 855.28,
"currency": "GBP",
"createdAt": "2026-05-03T00:48:29.436Z"
}