Oct
11
Sun
American Airlines AA1417
6:51 AM – 8:01 AM
DFW → JFK
From JPY 2067.83
Overview
flights / #165
6:51 AM – 8:01 AM
DFW → JFK
From JPY 2067.83
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/165" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/165" ); 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/165"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/165"
)
flight = res.json() Response
{
"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"
}