# Models

> List the models you can call.

Source: https://codiv.ai/docs/api-reference/models

## List models

Endpoint:


```text
GET https://api.codiv.ai/v1/models
```

Lists the currently available models. Requires an API key.

### Returns

- `models` (array)

  Each entry has a `name`, a `description` and a `release_date`.

curl:

```bash
curl https://api.codiv.ai/v1/models \
  -H "Authorization: Bearer $TYPESAFE_API_KEY"
```

Python:

```python
from typesafe_sdk import TypeSafeClient

client = TypeSafeClient()
print(client.models.list())
```

Response:


```json
{
  "models": [
    {
      "name": "openjev-latest",
      "description": "Alias for the newest OpenJev release. Currently openjev-0.1.",
      "release_date": "2026-09-18"
    },
    {
      "name": "openjev-0.1",
      "description": "OpenJev 0.1: DiffusionGemma 26B-A4B (NVFP4) on vLLM PR #57250.",
      "release_date": "2026-09-18"
    }
  ]
}
```
