Base URL:Documentation Index
Fetch the complete documentation index at: https://docs.revenuebase.ai/llms.txt
Use this file to discover all available pages before exploring further.
https://api.revenuebase.ai
v2 restructures and cleans up the v1 API surface: endpoints are grouped by resource, URLs are consistent, and batch workflows use a unified job model.
What’s new in v2
| Area | v1 | v2 |
|---|---|---|
| Account | GET /v1/credits, GET /v1/new-api-key | GET /v2/account/balance, POST /v2/account/api-keys/rotate |
| Email — single | POST /v1/process-email | POST /v2/email/validate |
| Email — batch | POST /v1/batch-upload + POST /v1/batch-process-email | POST /v2/email/validate/batch |
| Job status | POST /v1/batch-process-email-status | GET /v2/jobs/{process_id} |
| Job list | GET /v1/queued-process | GET /v2/jobs |
| Cancel job | POST /v1/cancel-process | POST /v2/jobs/{process_id}/cancel |
| Download results | POST /v1/batch-download | GET /v2/jobs/{process_id}/download |
| Organization resolve | POST /v2/company-resolver/resolve | POST /v2/organization/resolve |
| Organization discover | POST /v2/company-resolver/discovery | POST /v2/organization/discover |
Authentication
Same as v1 — include your API key in thex-key header on every request. See Authentication.