Jun
5
Thu
Japan Airlines JL3576
7:41 AM – 12:59 PM
ATL → ICN
From GBP 356.02
Overview
flights / #385
7:41 AM – 12:59 PM
ATL → ICN
From GBP 356.02
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/385" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/385" ); 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/385"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/385"
)
flight = res.json() Response
{
"id": 385,
"flightNumber": "JL3576",
"airline": "Japan Airlines",
"departureAirport": "ATL",
"arrivalAirport": "ICN",
"departureAt": "2025-06-05T07:41:03.724Z",
"arrivalAt": "2025-06-05T12:59:03.724Z",
"durationMinutes": 318,
"status": "in_air",
"priceFrom": 356.02,
"currency": "GBP",
"createdAt": "2025-05-06T07:41:03.724Z"
}