Skip to content
Documentation menu

API referenceDraft

Models

Listing the models your key can call.

Draft

The hosted API is a planned service with a draft specification. The local API described alongside it already exists and runs on your own machine.
GET/v1/modelsReturns the models your API key can call, with their current status.
Example request
curl /models \
  -H "Authorization: Bearer $KOLDOS_API_KEY"
Response shape
{
  "object": "list",
  "data": [
    {
      "id": "koldos-7b",
      "object": "model",
      "status": "available"
    },
    {
      "id": "koldos-22b",
      "object": "model",
      "status": "future"
    }
  ]
}

Model IDs

IDNameStatus
koldos-7bKOLDOS 7BAvailable
koldos-22bKOLDOS 22BFuture

Models served by the API

Which models the API serves, and on which plans, has not been announced. The list endpoint only returns models your key can call.

Pending. Not published yet