Skip to content

Installation

Requirements

Install

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

Configuration

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

.env
JAMBONZ_ACCOUNT_SID=your-account-sid
JAMBONZ_API_KEY=your-api-key

Or pass them directly:

from jambonz import JambonzClient

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

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

Optional settings

Variable Default Description
JAMBONZ_ACCOUNT_SID Your account identifier
JAMBONZ_API_KEY Your API key
JAMBONZ_BASE_URL https://api.jambonz.cloud API base URL (change for self-hosted)