Aug
4
Mon
Emirates EK863
2:20 PM – 4:43 PM
JFK → FCO
From CAD 284.58
Overview
flights / #134
2:20 PM – 4:43 PM
JFK → FCO
From CAD 284.58
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/134" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/134" ); 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/134"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/134"
)
flight = res.json() Response
{
"id": 134,
"flightNumber": "EK863",
"airline": "Emirates",
"departureAirport": "JFK",
"arrivalAirport": "FCO",
"departureAt": "2025-08-04T14:20:51.214Z",
"arrivalAt": "2025-08-04T16:43:51.214Z",
"durationMinutes": 143,
"status": "scheduled",
"priceFrom": 284.58,
"currency": "CAD",
"createdAt": "2025-07-08T14:20:51.214Z"
}