flights
flights
Browse 400 flights records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
- Air France AF1294 · 5/22/2025
- United Airlines UA5598 · 4/10/2026
- Lufthansa LH3261 · 4/17/2027
- Lufthansa LH776 · 8/6/2026
- Singapore Airlines SQ8464 · 1/4/2027
- British Airways BA7173 · 1/4/2027
- Southwest Airlines WN568 · 12/19/2025
- United Airlines UA9699 · 6/26/2026
- British Airways BA1412 · 8/19/2026
- Singapore Airlines SQ6812 · 5/6/2026
- Japan Airlines JL8586 · 1/11/2027
- Lufthansa LH8590 · 3/14/2026
- Delta Air Lines DL9364 · 7/16/2026
- Air France AF8619 · 12/20/2025
- Singapore Airlines SQ1041 · 8/12/2025
- Southwest Airlines WN9871 · 12/3/2025
- Lufthansa LH7161 · 3/2/2026
- Japan Airlines JL3975 · 7/25/2026
- Singapore Airlines SQ9268 · 1/22/2026
- Singapore Airlines SQ9250 · 7/16/2025
- Southwest Airlines WN4971 · 7/8/2026
- Emirates EK3654 · 10/12/2026
- Emirates EK9484 · 9/5/2026
- Japan Airlines JL855 · 12/31/2026
- May22
Air France AF1294
11:23 AM · MAD → ICN
- Apr10
United Airlines UA5598
2:09 PM · CDG → SIN
- Apr17
Lufthansa LH3261
9:17 PM · YYZ → ATL
- Aug6
Lufthansa LH776
8:51 AM · BCN → JFK
- Jan4
Singapore Airlines SQ8464
5:21 PM · SYD → SIN
- Jan4
British Airways BA7173
7:00 PM · CDG → ICN
- Dec19
Southwest Airlines WN568
10:29 AM · DXB → ATL
- Jun26
United Airlines UA9699
4:27 PM · FCO → MEX
- Aug19
British Airways BA1412
4:40 AM · LHR → NRT
- May6
Singapore Airlines SQ6812
2:28 AM · SIN → NRT
- Jan11
Japan Airlines JL8586
3:51 AM · LHR → GRU
- Mar14
Lufthansa LH8590
10:34 PM · BCN → AMS
- Jul16
Delta Air Lines DL9364
2:23 PM · MEX → DXB
- Dec20
Air France AF8619
1:17 AM · BCN → NRT
- Aug12
Singapore Airlines SQ1041
2:13 PM · DXB → AMS
- Dec3
Southwest Airlines WN9871
4:33 AM · LAX → YYZ
- Mar2
Lufthansa LH7161
4:25 AM · FCO → ATL
- Jul25
Japan Airlines JL3975
5:22 AM · BCN → NRT
- Jan22
Singapore Airlines SQ9268
4:14 PM · DFW → AMS
- Jul16
Singapore Airlines SQ9250
10:11 PM · LHR → DFW
- Jul8
Southwest Airlines WN4971
2:33 AM · BCN → JFK
- Oct12
Emirates EK3654
7:31 AM · ATL → NRT
- Sep5
Emirates EK9484
6:42 PM · MAD → SYD
- Dec31
Japan Airlines JL855
6:24 PM · BCN → YYZ
Air France AF1294
11:23 AM – 3:37 PM
MAD → ICN
From USD772.03
United Airlines UA5598
2:09 PM – 10:30 PM
CDG → SIN
From AED1996.76
Lufthansa LH3261
9:17 PM – 11:55 PM
YYZ → ATL
From AUD494.66
Lufthansa LH776
8:51 AM – 8:59 PM
BCN → JFK
From CAD312.42
Singapore Airlines SQ8464
5:21 PM – 6:24 PM
SYD → SIN
From USD1973.82
British Airways BA7173
7:00 PM – 8:28 AM
CDG → ICN
From JPY89.95
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": 1,
"flightNumber": "AF1294",
"airline": "Air France",
"departureAirport": "MAD",
"arrivalAirport": "ICN",
"departureAt": "2025-05-22T11:23:57.954Z",
"arrivalAt": "2025-05-22T15:37:57.954Z",
"durationMinutes": 254,
"status": "in_air",
"priceFrom": 772.03,
"currency": "USD",
"createdAt": "2025-02-23T11:23:57.954Z"
},
{
"id": 2,
"flightNumber": "UA5598",
"airline": "United Airlines",
"departureAirport": "CDG",
"arrivalAirport": "SIN",
"departureAt": "2026-04-10T14:09:05.599Z",
"arrivalAt": "2026-04-10T22:30:05.599Z",
"durationMinutes": 501,
"status": "scheduled",
"priceFrom": 1996.76,
"currency": "AED",
"createdAt": "2026-03-11T14:09:05.599Z"
},
{
"id": 3,
"flightNumber": "LH3261",
"airline": "Lufthansa",
"departureAirport": "YYZ",
"arrivalAirport": "ATL",
"departureAt": "2027-04-17T21:17:22.081Z",
"arrivalAt": "2027-04-17T23:55:22.081Z",
"durationMinutes": 158,
"status": "boarding",
"priceFrom": 494.66,
"currency": "AUD",
"createdAt": "2027-01-17T21:17:22.081Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 400,
"totalPages": 16
},
"links": {
"self": "/api/v1/flights?page=1",
"first": "/api/v1/flights?page=1",
"last": "/api/v1/flights?page=16",
"next": "/api/v1/flights?page=2",
"prev": null
}
}