Billing and Pricing
Overview
Oblax uses a usage-based billing model. You pay for what you consume — API requests, storage, compute time, and data transfer. There are no upfront commitments or reserved capacity fees. The platform tracks your usage in real time and makes it available through the billing dashboard and CLI.
Pricing is organized into tiers that bundle common usage patterns. Each tier includes a base allocation of resources, and overages are billed at the tier’s per-unit rate.
Billing Dimensions
| Dimension | Unit | Description |
|---|---|---|
| API Requests | Per 1,000 requests | All inbound HTTP and gRPC requests to your project’s endpoints |
| Storage | Per GB-month | File and object storage used by your project |
| Compute | Per 1,000 executions | Flux script executions and async service processing |
| Data Transfer | Per GB | Outbound data transfer from the platform to external clients |
| Real-time Connections | Per 1,000 connections | WebSocket and long-polling connections for real-time features |
Pricing Tiers
| Tier | Monthly Base | Includes | Overage Rate |
|---|---|---|---|
| Free | $0 | 10K API requests, 1GB storage, 1K executions | N/A (hard limits) |
| Starter | $29 | 100K API requests, 10GB storage, 10K executions | $0.50 / 1K requests |
| Pro | $99 | 1M API requests, 100GB storage, 100K executions | $0.30 / 1K requests |
| Enterprise | Custom | Custom allocations | Custom rates |
Usage Tracking
You can monitor your usage through the CLI or the platform dashboard.
CLI
obx account usageOutput:
| Period: January 2026
|
| API Requests: 45,230 / 1,000,000 (4.5%)
| Storage: 2.3 GB / 100 GB (2.3%)
| Compute: 12,100 / 100,000 (12.1%)
| Data Transfer: 0.8 GB / 10 GB (8.0%)Dashboard
The platform dashboard provides real-time usage graphs, historical trends, and cost projections based on current consumption rates.
Billing and Projects
Each project has its own billing record. Usage is tracked per project, and costs are aggregated at the organization level. An organization with multiple projects sees a combined billing statement with per-project breakdowns.
Organization
├── Project A: $45.20 (120K API requests, 5GB storage)
├── Project B: $12.80 (30K API requests, 1GB storage)
└── Total: $58.00Free Tier Limits
The free tier enforces hard limits. When you reach the limit, the platform returns a 429 Too Many Requests response with a Retry-After header. No charges are incurred beyond the free allocation.
To continue using the platform beyond free tier limits, upgrade to a paid tier through the dashboard or CLI:
obx account plan upgrade starterWhere to next
| Section | Description |
|---|---|
| Projects | Understand how projects relate to billing records |
| Environments | Learn how environment isolation affects usage tracking |
| Modules | Understand which module operations consume billable resources |