INTEGRATIONS · CODING AGENTS & APPS

OpenClaw

OpenClaw reaches any OpenAI-compatible API by registering a custom provider under models.providers in openclaw.json (project root) or ~/.openclaw/config.json (global). Set api to openai-completions and point baseUrl at Hoonify.

Get an API key

You need a key first. Create one on the Subscriptions page — keys are revealed once at creation, so copy it before closing the dialog.
openclaw.json
{
  "models": {
    "providers": {
      "hoonify": {
        "baseUrl": "https://api.hoonify.ai/v1",
        "apiKey": "hoon_…",
        "api": "openai-completions",
        "models": [
          { "id": "deepseek-ai/DeepSeek-V4-Pro", "name": "DeepSeek V4 Pro" },
          { "id": "Qwen/Qwen-3.6-27B", "name": "Qwen 3.6 27B" }
        ]
      }
    }
  },
  "agents": {
    "defaults": {
      "model": { "primary": "hoonify/deepseek-ai/DeepSeek-V4-Pro" }
    }
  }
}

Related: OpenAI compatibility · Models