> ## 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 Airlines

> List all configured operating airlines

Retrieve all operating airlines configured in workspace flight settings.

## Request

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

## Response

<ResponseField status={200} name="200">
  ```json theme={null}
  {
    "success": true,
    "data": {
      "Airlines": [
        {
          "Id": "airline_1",
          "Name": "Roblox Airways",
          "IataCode": "RA",
          "IcaoCode": "RBA",
          "Callsign": "ROBLOXAIR",
          "ColorHex": "#0EA5E9",
          "Icon": "plane"
        },
        {
          "Id": "airline_2",
          "Name": "Blox Express",
          "IataCode": "BX",
          "IcaoCode": "BXE",
          "Callsign": "BLOXEX",
          "ColorHex": "#10B981",
          "Icon": "wind"
        }
      ]
    }
  }
  ```
</ResponseField>

## Status Codes

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