May
21
Fri
American Airlines AA6375
3:50 AM – 4:16 PM
DFW → JFK
From SGD970.90
flights / #235
3:50 AM – 4:16 PM
DFW → JFK
From SGD970.90
curl -sS \
"https://example-data.com/api/v1/flights/235" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flights/235"
);
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/235"
);
const flight = (await res.json()) as Flight;import requests
res = requests.get(
"https://example-data.com/api/v1/flights/235"
)
flight = res.json() {
"id": 235,
"flightNumber": "AA6375",
"airline": "American Airlines",
"departureAirport": "DFW",
"arrivalAirport": "JFK",
"departureAt": "2027-05-21T03:50:25.635Z",
"arrivalAt": "2027-05-21T16:16:25.635Z",
"durationMinutes": 746,
"status": "cancelled",
"priceFrom": 970.9,
"currency": "SGD",
"createdAt": "2027-05-05T03:50:25.635Z"
}