Aug
4
Mon
Emirates EK863
2:20 PM – 4:43 PM
JFK → FCO
From CAD284.58
flights / #134
2:20 PM – 4:43 PM
JFK → FCO
From CAD284.58
curl -sS \
"https://example-data.com/api/v1/flights/134" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/134"
);
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/134"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/134"
)
flight = res.json() {
"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"
}