Install the Engium Python client via pip and make your first authenticated API call in minutes using httpx.
Engium examples use httpx for both sync and async workflows. requests also works - replace httpx.get/post with requests.get/post and remove the async/await keywords.
pip install httpx
# Optional: async support is included by default
# For sync usage, no extra dependencies needed| Parameter | Type | Requirement |
|---|---|---|
Authorization | Header · string | Required |
X-Tenant-ID | Header · UUID | Required |
AuthorizationRequiredBearer {api_key}. Generate from Settings → Developer → API Keys.
X-Tenant-IDRequiredYour Tenant UUID. All API data is scoped to this tenant.
Was this helpful?