> ## Documentation Index
> Fetch the complete documentation index at: https://docs.series.hr/llms.txt
> Use this file to discover all available pages before exploring further.

# List Aircraft Fleet

> List configured aircraft models and seating capacities

Retrieve all aircraft models and seating capacities configured in the workspace fleet settings.

## Request

```bash theme={null}
curl -X GET "https://api.series.hr/flights/aircraft" \
  -H "apikey: YOUR_API_KEY"
```

## Response

<ResponseField status={200} name="200">
  ```json theme={null}
  {
    "success": true,
    "data": {
      "AircraftFleet": [
        {
          "Id": "ac_1",
          "Model": "Boeing 737-800",
          "Manufacturer": "Boeing",
          "Capacity": 180
        },
        {
          "Id": "ac_2",
          "Model": "Airbus A320neo",
          "Manufacturer": "Airbus",
          "Capacity": 186
        }
      ]
    }
  }
  ```
</ResponseField>

## Status Codes

* `200`: Aircraft fleet returned successfully
* `401`: API key is required
* `403`: Flights module is not enabled
