Skip to main content
The RevenueBase Python SDK handles authentication, retries, and response parsing so you can focus on your application logic.

Installation

pip install revenuebase-sdk

Quick start

from revenuebase_sdk import RevenuebaseClient

client = RevenuebaseClient()

result = client.email.verify(email="user@example.com")
print(result.status)

Configuration

The SDK reads from the REVENUEBASE_API_KEY environment variable automatically. You don’t need to pass the key explicitly if it’s set in your environment.

Request an SDK for another language

We currently support Python. If you’d like an SDK for another language, let us know and we’ll prioritize based on demand.

Resources