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

# Available Models

> Lists only the models enabled for the company.

## Endpoint

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

## Headers

Requires header `authorization:  <your_token>`.

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

## Request Body

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

## Response (200)

````json theme={null}
{"status":"ok", "data": [
  {
    "id": "MODEL_12345",
    "name": "GPT-4 Orkeia",
    "sectors": ["engineering", "support"],
    "description": "Advanced reasoning model",
    "enabled": true,
    "provider": "openai",
    "model": "gpt-4-0613"
  }
]
}```


## Error Codes

### 500 — Server Error
```json
{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}
````

### 400 — Client Error

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