Nov
5
Thu
Emirates EK4936
11:44 AM – 11:15 PM
DFW → FCO
From SGD 2115.09
Overview
flights / #167
11:44 AM – 11:15 PM
DFW → FCO
From SGD 2115.09
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/167" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/167" ); 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/167"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/167"
)
flight = res.json() Response
{
"id": 167,
"flightNumber": "EK4936",
"airline": "Emirates",
"departureAirport": "DFW",
"arrivalAirport": "FCO",
"departureAt": "2026-11-05T11:44:46.616Z",
"arrivalAt": "2026-11-05T23:15:46.616Z",
"durationMinutes": 691,
"status": "in_air",
"priceFrom": 2115.09,
"currency": "SGD",
"createdAt": "2026-09-27T11:44:46.616Z"
}