Sep
13
Sat
Emirates EK6214
11:09 AM – 12:23 PM
CDG → FCO
From JPY 735.93
Overview
flights / #386
11:09 AM – 12:23 PM
CDG → FCO
From JPY 735.93
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/386" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/386" ); 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/386"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/386"
)
flight = res.json() Response
{
"id": 386,
"flightNumber": "EK6214",
"airline": "Emirates",
"departureAirport": "CDG",
"arrivalAirport": "FCO",
"departureAt": "2025-09-13T11:09:43.001Z",
"arrivalAt": "2025-09-13T12:23:43.001Z",
"durationMinutes": 74,
"status": "landed",
"priceFrom": 735.93,
"currency": "JPY",
"createdAt": "2025-08-17T11:09:43.001Z"
}