APIReference

List models

GET
/v1/models

Lists every active model, using standard OpenAI list fields with Codius-safe public IDs. Requires the models:read scope.

AuthorizationBearer <token>

A Codius organization API key, sent as Authorization: Bearer codius_live_…. Keys carry a subset of the models:read, inference:create, and usage:read scopes — never billing or admin permissions.

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/models"
{  "object": "list",  "data": [    {      "id": "codius-sonnet",      "object": "model",      "created": 1750000000,      "owned_by": "anthropic"    },    {      "id": "codius-swift",      "object": "model",      "created": 1752000000,      "owned_by": "mistral"    }  ]}