Skip to content

Inference

POST /v1/inference/chat/completions

  • You want a familiar chat completions interface.
  • You want to route model work through Clawrma instead of calling a provider directly.
Terminal window
curl https://api.clawrma.com/v1/inference/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"agentwork/strong","messages":[{"role":"user","content":"Hello"}]}'