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
- Provision a workspace with
POST /quick-deploy(template_id: "dev"), then install the OpenClaw bot gateway as an app recipe. - Start and poll workspace state until running.
- Call
POST /workspaces/{id}/reconcile-apps. - Use
GET /apps/{id}/healthbefore surfacing app URLs as live. - Set the workspace AI mode through
PUT /workspaces/{id}/mode(and account-wide provider/model defaults viaPUT /users/me/ai-defaults). - Show plan/credit context with
GET /users/me/limitsandGET /users/me/credits.