Jun
20
Sat
Japan Airlines JL9136
12:48 AM – 6:10 AM
GRU → JFK
From GBP 855.28
Overview
flights / #192
12:48 AM – 6:10 AM
GRU → JFK
From GBP 855.28
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/192" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/192" ); const flight = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/flights.d.ts https://example-data.com/types/flights.d.ts
import type { Flight } from "./types/flights";
const res = await fetch(
"https://example-data.com/api/v1/flights/192"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/192"
)
flight = res.json() Response
{
"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"
}