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.zaAll 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
Next steps
Authentication
Header format, key rotation and safe storage.
Chat completions
Full request and response schema, plus streaming.
Errors & rate limits
Status codes, retry guidance and 429 headers.
Playground
Send a live request with one of your keys.