Skip to content

Installation

Requirements

Install

pip install jambonz-python-sdk
uv add jambonz-python-sdk
poetry add jambonz-python-sdk

Configuration

The SDK reads credentials from environment variables or a .env file:

.env
JAMBONZ_ACCOUNT_SID=your-account-sid
JAMBONZ_API_KEY=your-api-key
JAMBONZ_BASE_URL=https://api.jambonz.cloud  # optional, this is the default

Or pass them directly:

from jambonz import JambonzClient

client = JambonzClient(
    account_sid="your-account-sid",
    api_key="your-api-key",
)

Tip

Get your Account SID and API Key from the jambonz portal under Account settings.