May
9
Sat
Air France AF7277
2:50 AM – 2:33 PM
DFW → ATL
From JPY 268.09
Overview
flights / #186
2:50 AM – 2:33 PM
DFW → ATL
From JPY 268.09
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/186" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/186" ); 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/186"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/186"
)
flight = res.json() Response
{
"id": 186,
"flightNumber": "AF7277",
"airline": "Air France",
"departureAirport": "DFW",
"arrivalAirport": "ATL",
"departureAt": "2026-05-09T02:50:55.080Z",
"arrivalAt": "2026-05-09T14:33:55.080Z",
"durationMinutes": 703,
"status": "landed",
"priceFrom": 268.09,
"currency": "JPY",
"createdAt": "2026-03-05T02:50:55.080Z"
}