example-data.com

flights / #175

Feb
25
Wed

Japan Airlines JL8367

1:43 AM – 4:19 AM

FCO → BCN

From SGD520.74

Component variants

curl -sS \
  "https://example-data.com/api/v1/flights/175" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/flights/175"
);
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/175"
);
const flight = (await res.json()) as Flight;
import requests

res = requests.get(
    "https://example-data.com/api/v1/flights/175"
)
flight = res.json()
{
  "id": 175,
  "flightNumber": "JL8367",
  "airline": "Japan Airlines",
  "departureAirport": "FCO",
  "arrivalAirport": "BCN",
  "departureAt": "2026-02-25T01:43:04.481Z",
  "arrivalAt": "2026-02-25T04:19:04.481Z",
  "durationMinutes": 156,
  "status": "in_air",
  "priceFrom": 520.74,
  "currency": "SGD",
  "createdAt": "2025-12-14T01:43:04.481Z"
}
Draftbit