Sep
6
Sat
Delta Air Lines DL7761
10:02 AM – 3:51 PM
AMS → CDG
From USD 281.86
Overview
flights / #62
10:02 AM – 3:51 PM
AMS → CDG
From USD 281.86
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/62" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/62" ); 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/62"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/62"
)
flight = res.json() Response
{
"id": 62,
"flightNumber": "DL7761",
"airline": "Delta Air Lines",
"departureAirport": "AMS",
"arrivalAirport": "CDG",
"departureAt": "2025-09-06T10:02:43.191Z",
"arrivalAt": "2025-09-06T15:51:43.191Z",
"durationMinutes": 349,
"status": "landed",
"priceFrom": 281.86,
"currency": "USD",
"createdAt": "2025-06-11T10:02:43.191Z"
}