Health
Aircraft
Airports
Fleet
Tickets
Routes
Flights
GET
/api/aircraftRetrieve a list of aircraft with optional pagination
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| limit | Number | 100 | Maximum number of results to return Range: 1-100 |
| offset | Number | 0 | Number of results to offset Must be ≥ 0 |
Response Schema
| Field | Type | Description |
|---|---|---|
| id | String | Unique identifier for the aircraft |
| iata | String | Registered IATA identifier |
| icao | String | Registered ICAO identifier |
| manufacturer | String | Aircraft manufacturer name |
| model | String | Aircraft model designation |
| range | Number | Maximum flight range in nautical miles |
| cruiseSpeed | Number | Cruising speed in Mach |
| capacity | Number | Maximum passenger capacity |
Example Usage
curl -X GET https://expressams.benschenk.dev/api/aircraft?limit=20&offset=20