Aug
6
Thu
Lufthansa LH776
8:51 AM – 8:59 PM
BCN → JFK
From CAD 312.42
Overview
flights / #4
8:51 AM – 8:59 PM
BCN → JFK
From CAD 312.42
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/4" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/4" ); 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/4"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/4"
)
flight = res.json() Response
{
"id": 4,
"flightNumber": "LH776",
"airline": "Lufthansa",
"departureAirport": "BCN",
"arrivalAirport": "JFK",
"departureAt": "2026-08-06T08:51:51.061Z",
"arrivalAt": "2026-08-06T20:59:51.061Z",
"durationMinutes": 728,
"status": "in_air",
"priceFrom": 312.42,
"currency": "CAD",
"createdAt": "2026-05-14T08:51:51.061Z"
}