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 |
| Company resolve | POST /v2/company-resolver/resolve | POST /v2/organization/resolve |
| Company 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.
v1 sunset
v1 endpoints remain available until July 7, 2026. After that date, requests to v1 paths will return410 Gone. Plan to migrate to v2 before the sunset date.