Documentation

Build with the Dheep API

The Dheep API is HTTP + JSON and intentionally OpenAI-compatible, so most existing client libraries work by changing the base URL and key. Every request is authenticated with a secret key created in this portal.

Base URL

text
https://api.dheep.co.za

All endpoints are versioned under /v1. TLS is required; plain HTTP requests are rejected.

Your first request

bash
curl https://api.dheep.co.za/v1/chat/completions \
  -H "Authorization: Bearer $DHEEP_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "dheep-chat",
    "messages": [{ "role": "user", "content": "Hello Dheep" }]
  }'

Models & pricing

ModelContextInput / 1KOutput / 1K

dheep-chat-large

Highest quality reasoning and long-context work.

128kR0.00220R0.00660

dheep-chat

Balanced default for production chat workloads.

32kR0.00080R0.00240

dheep-chat-mini

Fast and inexpensive for classification and extraction.

16kR0.00020R0.00060

dheep-embed

Embeddings for search and retrieval.

8kR0.00005R0.00000

Next steps

Create an account