Skip to main content
clawd.rigbox.dev is built on top of the same Rigbox API base (https://api.rigbox.dev/api/v1), plus Clawd-specific behavior for OpenClaw bots, AI credits, and billing UX. Use this guide as an API map when building your own Clawd-like experience.

API Groups

Core Rigbox APIs Used by Clawd

AI Config APIs Used by Clawd

These are the APIs that manage AI provider configuration:
AI config is split: PUT /workspaces/{id}/mode sets a workspace’s managed/BYOK mode, and PUT /users/me/ai-defaults sets the account-wide default provider and model. There is no combined per-workspace ai-config endpoint.

Billing and Subscriptions

Clawd handles billing through its own integration layer. If you build your own dashboard, use your preferred billing provider (Stripe, Paddle, etc.) - Rigbox’s core workspace and AI APIs work independently of billing.

Minimal Clawd-Like Integration Flow

  1. Provision a workspace with POST /quick-deploy (template_id: "dev"), then install the OpenClaw bot gateway as an app recipe.
  2. Start and poll workspace state until running.
  3. Call POST /workspaces/{id}/reconcile-apps.
  4. Use GET /apps/{id}/health before surfacing app URLs as live.
  5. Set the workspace AI mode through PUT /workspaces/{id}/mode (and account-wide provider/model defaults via PUT /users/me/ai-defaults).
  6. Show plan/credit context with GET /users/me/limits and GET /users/me/credits.
For runtime internals (AI proxy and credit enforcement pipeline), continue to /clawd-runtime-services.