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

# Listar Provedores de IA

> Retorna os provedores suportados pela plataforma.

## Endpoint

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

## Cabeçalhos

Requer cabeçalho `authorization:  <seu_token>`.

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

## Corpo da requisição

Sem corpo.

## Resposta (200)

Exemplo:

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

## Códigos de erro

### 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
}
```
