example-data.com

flights

flights

Page 2 of 10.

Feb
21
Sat

Singapore Airlines SQ2252

6:22 AM – 9:10 AM

YYZ → DFW

From CAD984.11

Apr
23
Thu

Lufthansa LH5022

3:15 PM – 7:01 PM

LHR → ORD

From GBP763.85

Jun
16
Tue

American Airlines AA5542

3:40 PM – 5:36 PM

GRU → ATL

From CAD287.16

Oct
14
Tue

Delta Air Lines DL719

10:26 AM – 12:37 PM

ICN → JFK

From SGD2373.48

Jul
23
Thu

Singapore Airlines SQ122

11:53 AM – 10:23 PM

YYZ → SYD

From CAD1385.22

Jun
21
Sat

American Airlines AA3964

6:55 PM – 7:10 AM

NRT → GRU

From SGD244.12

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/flights?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/flights?limit=25"
);
const { data, meta } = await res.json();
import type { Flight, ListEnvelope } from "https://example-data.com/types/flights.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/flights?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Flight>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/flights",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 25,
      "flightNumber": "SQ2252",
      "airline": "Singapore Airlines",
      "departureAirport": "YYZ",
      "arrivalAirport": "DFW",
      "departureAt": "2026-02-21T06:22:51.031Z",
      "arrivalAt": "2026-02-21T09:10:51.031Z",
      "durationMinutes": 168,
      "status": "in_air",
      "priceFrom": 984.11,
      "currency": "CAD",
      "createdAt": "2026-01-06T06:22:51.031Z"
    },
    {
      "id": 26,
      "flightNumber": "LH5022",
      "airline": "Lufthansa",
      "departureAirport": "LHR",
      "arrivalAirport": "ORD",
      "departureAt": "2026-04-23T15:15:31.779Z",
      "arrivalAt": "2026-04-23T19:01:31.779Z",
      "durationMinutes": 226,
      "status": "delayed",
      "priceFrom": 763.85,
      "currency": "GBP",
      "createdAt": "2026-02-20T15:15:31.779Z"
    },
    {
      "id": 27,
      "flightNumber": "AA5542",
      "airline": "American Airlines",
      "departureAirport": "GRU",
      "arrivalAirport": "ATL",
      "departureAt": "2026-06-16T15:40:27.086Z",
      "arrivalAt": "2026-06-16T17:36:27.086Z",
      "durationMinutes": 116,
      "status": "delayed",
      "priceFrom": 287.16,
      "currency": "CAD",
      "createdAt": "2026-05-20T15:40:27.086Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 400,
    "totalPages": 17
  },
  "links": {
    "self": "/api/v1/flights?page=2",
    "next": "/api/v1/flights?page=3",
    "prev": "/api/v1/flights?page=1"
  }
}
Draftbit