Getting startedDraft
KOLDOS API overview
The local API that exists today, the hosted API that is planned, and how they differ.
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.
There are two KOLDOS APIs. The local API runs on your own computer and exists today. The hosted API, KOLDOS as a service, is planned: the design is written and the service has not started.
Both speak the same common chat completions format, and in both a request is a whole KOLDOS turn: the Decision Engine picks a route, the Context Broker assembles the prompt, tools run and the result is verified. It is not a single call to the model.
Status
| API | Status | Where it runs |
|---|---|---|
| Local API | Available with KOLDOS | Your computer, on 127.0.0.1 |
| Hosted API | Planned | Hosted GPUs. Not started |
Planned hosted endpoints
| Method | Path | Purpose |
|---|---|---|
| POST | /v1/chat/completions | A KOLDOS turn, not a single completion. |
| POST | /v1/vision | Image analysis. |
| POST | /v1/search | Web search. |
| POST | /v1/research | Deeper research across several sources. |
| GET | /v1/models | Models available to your key. |
| GET | /v1/credits | Credit balance and transactions. |
| GET | /v1/usage | Consumption per period. |
What you need
- For the local API: KOLDOS running on your computer. See Local API.
- For the hosted API, once it exists: approved developer access. See Requesting access.
- A Discord account to sign in to the dashboard.
- An API key created in the dashboard.
- Credits on your account.
Local or API?
| Compared | Local API | Hosted API |
|---|---|---|
| Where the turn runs | Your computer | Hosted GPUs |
| Needs a capable GPU | Yes, an NVIDIA GPU with CUDA | No |
| Needs an internet connection | No | Yes, for every request |
| Authentication | Optional access token | API key |
| Cost | Your own hardware | Credits, on plans from $0 to $14.99 a month |
| Your code and prompts | Stay on your computer | Sent to the service |