Billing & Usage
1claw tracks every API request and offers flexible billing through subscription tiers with optional prepaid credits or on-chain micropayments for overages.
Subscription Tiers
Every organization starts on the Free tier and can upgrade to paid plans for higher limits:
| Tier | Monthly Price | Annual Price | Requests/mo | Vaults | Secrets | Agents |
|---|---|---|---|---|---|---|
| Free | $0 | — | 1,000 | 3 | 50 | 2 |
| Pro | $29 | $290 | 25,000 | 25 | 500 | 10 |
| Business | $149 | $1,490 | 100,000 | 100 | 5,000 | 50 |
| Enterprise | Custom | Custom | Unlimited | Unlimited | Unlimited | Unlimited |
Resource Limits
Each tier enforces hard limits on the number of vaults, secrets, and agents your organization can create. When you attempt to create a resource beyond your limit, the API returns 403 Forbidden with type: "resource_limit_exceeded":
{
"type": "resource_limit_exceeded",
"title": "Resource Limit Exceeded",
"status": 403,
"detail": "Vault limit reached (3/3 on free tier). Upgrade your plan for more."
}
Unlike request quotas (which support overages via credits or x402), resource limits require upgrading your subscription tier. The dashboard displays an upgrade prompt automatically when a limit is hit.
Upgrading
Visit 1claw.xyz/settings/billing to:
- Start a subscription checkout (Stripe)
- View your current tier and limits
- Manage your subscription (upgrade, downgrade, cancel)
- Access the Stripe customer portal for invoices and payment methods
Usage Tracking
Every authenticated API request is recorded as a usage event with:
- Method and endpoint — e.g.
GET /v1/vaults/:id/secrets/:path - Principal — Which user or agent made the request
- Status code — Whether the request succeeded
- Price — The cost of the operation (see pricing below)
- Timestamp — When the request was made
Usage is unified across all access methods. Whether a secret is read from the dashboard, the TypeScript SDK, or an MCP tool call, it counts as one request against the same quota.
Pricing
Base Rates
| Endpoint | Price |
|---|---|
Read a secret (GET /v1/vaults/*/secrets/*) | $0.001 |
Write a secret (PUT /v1/vaults/*/secrets/*) | $0.005 |
Create a share link (POST /v1/secrets/*/share) | $0.002 |
Access a shared secret (GET /v1/share/*) | $0.001 |
Query audit events (GET /v1/audit/events) | $0.0005 |
| Auth, health, listing endpoints | Free |
Overage Rates (After Tier Limit)
When you exceed your tier's monthly request limit, overage charges apply. Pro and Business tiers get discounted overage rates:
| Tier | Overage Rate per Request |
|---|---|
| Free | $0.001 (standard rate) |
| Pro | $0.0008 (20% discount) |
| Business | $0.0006 (40% discount) |
| Enterprise | Custom |
Overage Methods
When your monthly tier limit is exhausted, you can choose how to pay for overages:
1. Prepaid Credits (Recommended)
Top up your account with credits ($5–$1,000) via Stripe. Credits are deducted automatically when you exceed your tier limit, expire after 12 months, and benefit from your tier's discounted overage rates.
Benefits:
- Automatic deduction — no per-request payment flow
- Tier discounts apply (Pro/Business save 20–40%)
- Simple billing — one-time top-up, credits last 12 months
- No blockchain interaction required
How it works:
- Visit
/settings/billingand click "Top Up Credits" - Choose an amount ($5, $10, $25, $50, $100, $250, $500, $1,000)
- Complete Stripe checkout
- Credits are added immediately and used automatically for overages