Skip to main content
GET
/
v1
/
models
List models
curl --request GET \
  --url https://api.cogito.decart.ai/v1/models

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.

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

Response

{
  "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.