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

# List models

> GET /v1/models

Returns the catalog of models available to your account. OpenAI-compatible.

## Response

```json theme={null}
{
  "object": "list",
  "data": [
    {
      "id": "gpt-oss-120b",
      "object": "model",
      "created": 1714521600,
      "owned_by": "cogito",
      "context_window": 131072
    },
    ...
  ]
}
```

## Notes

* Fine-tuned variants tied to your account appear in this list with their own slugs (e.g. `ft:gpt-oss-120b:my-org:summary-v1`).
* The `context_window` field is a Cogito extension; standard OpenAI clients ignore it.
