example-data.com

flights / #165

Oct
11
Sun

American Airlines AA1417

6:51 AM – 8:01 AM

DFW → JFK

From JPY2067.83

Component variants

curl -sS \
  "https://example-data.com/api/v1/flights/165" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/flights/165"
);
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/165"
);
const flight = (await res.json()) as Flight;
import requests

res = requests.get(
    "https://example-data.com/api/v1/flights/165"
)
flight = res.json()
{
  "id": 165,
  "flightNumber": "AA1417",
  "airline": "American Airlines",
  "departureAirport": "DFW",
  "arrivalAirport": "JFK",
  "departureAt": "2026-10-11T06:51:44.284Z",
  "arrivalAt": "2026-10-11T08:01:44.284Z",
  "durationMinutes": 70,
  "status": "delayed",
  "priceFrom": 2067.83,
  "currency": "JPY",
  "createdAt": "2026-08-11T06:51:44.284Z"
}
Draftbit