example-data.com

flights / #62

Sep
6
Sat

Delta Air Lines DL7761

10:02 AM – 3:51 PM

AMS → CDG

From USD281.86

Component variants

curl -sS \
  "https://example-data.com/api/v1/flights/62" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/flights/62"
);
const flight = await res.json();
import type { Flight } from "https://example-data.com/types/flights.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/flights/62"
);
const flight = (await res.json()) as Flight;
import requests

res = requests.get(
    "https://example-data.com/api/v1/flights/62"
)
flight = res.json()
{
  "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"
}
Draftbit