Python Quickstart
Install the Engium Python client via pip and make your first authenticated API call in minutes using httpx.
info
Prerequisites
- •Python 3.9+
- •API key and Tenant ID from Settings → Developer
info
httpx recommended
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.
Implementation
terminal
pip install httpx
# Optional: async support is included by default
# For sync usage, no extra dependencies neededRequest Parameters
| Parameter | Type | Requirement |
|---|---|---|
Authorization | Header · string | Required |
X-Tenant-ID | Header · UUID | Required |
AuthorizationRequiredBearer {api_key}. Generate from Settings → Developer → API Keys.
Type:Header · string
X-Tenant-IDRequiredYour Tenant UUID. All API data is scoped to this tenant.
Type:Header · UUID
Was this helpful?