Nov
20
Fri
Emirates EK7831
6:39 PM – 2:07 AM
BCN → DXB
From EUR 1908.57
Overview
flights / #331
6:39 PM – 2:07 AM
BCN → DXB
From EUR 1908.57
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/331" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/331" ); 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/331"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/331"
)
flight = res.json() Response
{
"id": 331,
"flightNumber": "EK7831",
"airline": "Emirates",
"departureAirport": "BCN",
"arrivalAirport": "DXB",
"departureAt": "2026-11-20T18:39:45.294Z",
"arrivalAt": "2026-11-21T02:07:45.294Z",
"durationMinutes": 448,
"status": "in_air",
"priceFrom": 1908.57,
"currency": "EUR",
"createdAt": "2026-08-27T18:39:45.294Z"
}