Nov
5
Thu
American Airlines AA6142
6:24 AM – 12:40 PM
CDG → BCN
From USD 167.80
Overview
flights / #345
6:24 AM – 12:40 PM
CDG → BCN
From USD 167.80
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/345" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/345" ); 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/345"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/345"
)
flight = res.json() Response
{
"id": 345,
"flightNumber": "AA6142",
"airline": "American Airlines",
"departureAirport": "CDG",
"arrivalAirport": "BCN",
"departureAt": "2026-11-05T06:24:56.807Z",
"arrivalAt": "2026-11-05T12:40:56.807Z",
"durationMinutes": 376,
"status": "landed",
"priceFrom": 167.8,
"currency": "USD",
"createdAt": "2026-10-08T06:24:56.807Z"
}