Apr
20
Tue
United Airlines UA7281
11:44 AM – 12:36 AM
CDG → DFW
From AED 1966.54
Overview
flights / #295
11:44 AM – 12:36 AM
CDG → DFW
From AED 1966.54
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/295" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/295" ); 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/295"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/295"
)
flight = res.json() Response
{
"id": 295,
"flightNumber": "UA7281",
"airline": "United Airlines",
"departureAirport": "CDG",
"arrivalAirport": "DFW",
"departureAt": "2027-04-20T11:44:36.425Z",
"arrivalAt": "2027-04-21T00:36:36.425Z",
"durationMinutes": 772,
"status": "delayed",
"priceFrom": 1966.54,
"currency": "AED",
"createdAt": "2027-01-25T11:44:36.425Z"
}