Feb
12
Fri
United Airlines UA3247
5:50 AM – 7:38 PM
CDG → JFK
From USD 675.77
Overview
flights / #367
5:50 AM – 7:38 PM
CDG → JFK
From USD 675.77
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/367" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/367" ); 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/367"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/367"
)
flight = res.json() Response
{
"id": 367,
"flightNumber": "UA3247",
"airline": "United Airlines",
"departureAirport": "CDG",
"arrivalAirport": "JFK",
"departureAt": "2027-02-12T05:50:44.213Z",
"arrivalAt": "2027-02-12T19:38:44.213Z",
"durationMinutes": 828,
"status": "boarding",
"priceFrom": 675.77,
"currency": "USD",
"createdAt": "2026-12-04T05:50:44.213Z"
}