> ## 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 Modelos da empresa

> Lista todos os modelos cadastrados da empresa.

## Endpoint

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

## Cabeçalhos

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

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

## Corpo da requisição

```json theme={null}
{
  "environment": {
    "company": "acme-inc",
    "sector": "engineering"
  }
}
```

## Resposta (200)

> Se houver `apikey`, ela é **mascarada**  para a sua segurança e privacidade (ex.: `sk-ABCD****-****`).

```json theme={null}
{
"status": "ok", 
"data": [{
    "id": "MODEL_12345",
    "name": "GPT-4 Orkeia",
    "sectors": ["engineering", "support"],
    "description": "Modelo avançado de raciocínio",
    "enabled": true,
    "provider": "openai",
    "model": "gpt-4-0613",
    "apikey": "sk-ABCD****-****"
  }
]
```

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