Requirements
Before installing, ensure you have a compatible Python version:- Python 3.10 or higher is required
- Supported versions: 3.10, 3.11, 3.12, 3.13, 3.14
The SDK follows the official Python release cycle. All versions that have not reached end-of-life are supported.
Install with pip
Install the package
Run the following command in your terminal:This will install the SDK and all required dependencies:
httpx- HTTP client for making API requestspydantic- Data validation and type hintsanyio- Async I/O abstractionsniffio- Async library detection
Install with uv
If you’re using uv, a fast Python package installer and resolver:Dependencies
The SDK has the following core dependencies, which are automatically installed:| Package | Version | Purpose |
|---|---|---|
httpx | ≥0.28.1 | HTTP client for API requests |
pydantic | ≥2.12.5 | Data validation and models |
anyio | ≥4.12.1 | Async I/O support |
sniffio | ≥1.3.1 | Async library detection |
There are no optional dependencies. All required packages are installed automatically.
Development installation
If you want to contribute to the SDK or run it from source:Next steps
Now that you have the SDK installed, you’re ready to start building:Quickstart
Learn how to authenticate and make your first API call