Apr
11
Sat
American Airlines AA8291
7:41 AM – 3:53 PM
ORD → FCO
From USD 491.34
Overview
flights / #347
7:41 AM – 3:53 PM
ORD → FCO
From USD 491.34
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flights/347" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flights/347" ); 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/347"
);
const flight = (await res.json()) as Flight; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flights/347"
)
flight = res.json() Response
{
"id": 347,
"flightNumber": "AA8291",
"airline": "American Airlines",
"departureAirport": "ORD",
"arrivalAirport": "FCO",
"departureAt": "2026-04-11T07:41:05.223Z",
"arrivalAt": "2026-04-11T15:53:05.223Z",
"durationMinutes": 492,
"status": "boarding",
"priceFrom": 491.34,
"currency": "USD",
"createdAt": "2026-03-23T07:41:05.223Z"
}