example-data.com

flights

flights

Page 3 of 10.

Jul
4
Sat

Southwest Airlines WN1811

8:33 PM – 10:01 PM

SYD → YYZ

From AUD778.07

Aug
10
Mon

Southwest Airlines WN9951

2:31 PM – 7:39 PM

LAX → GRU

From JPY837.43

Sep
17
Thu

United Airlines UA1628

1:35 PM – 8:38 PM

YYZ → BCN

From AUD1714.25

Apr
5
Sun

Delta Air Lines DL2514

12:29 PM – 10:23 PM

JFK → SIN

From USD1687.64

Aug
24
Mon

Air France AF7251

8:07 AM – 4:36 PM

MAD → ATL

From GBP886.11

Dec
29
Tue

Air France AF9115

11:15 AM – 1:42 PM

LHR → DFW

From GBP1793.17

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": 49,
      "flightNumber": "WN1811",
      "airline": "Southwest Airlines",
      "departureAirport": "SYD",
      "arrivalAirport": "YYZ",
      "departureAt": "2026-07-04T20:33:05.237Z",
      "arrivalAt": "2026-07-04T22:01:05.237Z",
      "durationMinutes": 88,
      "status": "boarding",
      "priceFrom": 778.07,
      "currency": "AUD",
      "createdAt": "2026-06-18T20:33:05.237Z"
    },
    {
      "id": 50,
      "flightNumber": "WN9951",
      "airline": "Southwest Airlines",
      "departureAirport": "LAX",
      "arrivalAirport": "GRU",
      "departureAt": "2026-08-10T14:31:15.780Z",
      "arrivalAt": "2026-08-10T19:39:15.780Z",
      "durationMinutes": 308,
      "status": "in_air",
      "priceFrom": 837.43,
      "currency": "JPY",
      "createdAt": "2026-06-01T14:31:15.780Z"
    },
    {
      "id": 51,
      "flightNumber": "UA1628",
      "airline": "United Airlines",
      "departureAirport": "YYZ",
      "arrivalAirport": "BCN",
      "departureAt": "2026-09-17T13:35:37.561Z",
      "arrivalAt": "2026-09-17T20:38:37.561Z",
      "durationMinutes": 423,
      "status": "boarding",
      "priceFrom": 1714.25,
      "currency": "AUD",
      "createdAt": "2026-07-15T13:35:37.561Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 400,
    "totalPages": 17
  },
  "links": {
    "self": "/api/v1/flights?page=3",
    "next": "/api/v1/flights?page=4",
    "prev": "/api/v1/flights?page=2"
  }
}
Draftbit