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

# List AI Providers

> Returns the providers supported by the platform.

## Endpoint

`GET https://gateway.orkeia.ai/ai-models/providers`

## Headers

Requires header `authorization:  <your_token>`.

```http theme={null}
authorization:  <your_token>
Content-Type: application/json
```

## Request Body

None.

## Response (200)

Example:

```json theme={null}
{
  "providers": ["openai", "anthropic", "gemini", "maritaca", "mistral", "deepseek", "meta", "microsoft", "alibaba", "google"]
}
```

## Error Codes

### 500 — Server Error

```json theme={null}
{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}
```

### 400 — Client Error

```json theme={null}
{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}
```
