Pricing and Metering
Plans, usage limits, and how Atlas meters your account.
Plans
| Plan | Price | Best for |
|---|---|---|
| Trial | Free for 14 days | Evaluating the API and testing your integration |
| Build | From 75,000 NGN/month | First production workflow: fund pages, filing monitors, internal tools |
| Custom | Contact us | Brokers, PFAs, banks, or any workflow that needs custom volume, routing, or SLA |
Trial includes soft usage limits across endpoints, events, and webhook delivery.
Build includes covered entities, matched events, webhook deliveries, and a small AI allowance. Atlas handles overages through plan review, not automatic charges.
What counts toward usage
| Unit | What it measures |
|---|---|
| Covered entities | Funds or issuers your organization actively tracks through subscriptions, routing, or workflow usage |
| Matched events | Events that match one of your active subscriptions or tracked entities |
| Deliveries | Webhook payloads sent to your configured endpoints |
| AI queries | Calls to /v1/ai/query |
Atlas may still apply request rate limits for infrastructure protection, but raw HTTP requests are not the primary commercial unit.
Request rate limits
Atlas enforces request rate limits separately from commercial usage metering.
Every data-plane response includes rate-limit headers:
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4832
X-RateLimit-Reset: 1718323200When you hit the request-rate limit, Atlas returns 429 Too Many Requests with a Retry-After header. See Errors for the response format.
| Plan | Daily request limit |
|---|---|
| Trial | 500 |
| Build | 5,000 |
| Custom | As agreed |
Rate limits apply at the organization level. All keys in your organization share the same daily budget.
Health and readiness checks (/v1/health, /v1/ready) are not counted.
Sandbox usage
Sandbox requests (atl_test_ keys) are metered separately and do not count against your live allocation.
Overages
Atlas does not apply automatic overage charges. If your usage approaches your plan limit:
- You'll see it in the portal usage dashboard.
- We'll reach out to discuss an upgrade or custom arrangement.
- Your integration keeps working. We use soft limits, not hard cutoffs, for established accounts.
Checking your usage
The portal shows covered-entity usage, matched-event usage, delivery usage, AI usage, and webhook delivery history with success rates.
You can also query usage programmatically:
curl -s https://api.rangler.co/v1/organizations/{org_id}/usage \
-H "Authorization: Bearer your_portal_token"Related pages
Quickstart covers your first request, Authentication explains the API key model, Environments covers sandbox and live isolation, and Errors documents rate-limit headers and error responses.