Skip to main content
Avala provides official SDKs for Python and TypeScript, along with direct REST API access and a full OpenAPI specification. Choose the option that best fits your stack.

Quick Install

pip install avala

Environment Variables

Both SDKs read configuration from environment variables so you can keep credentials out of source code.
VariableDescriptionDefault
AVALA_API_KEYAPI key for authentication
AVALA_BASE_URLCustom API base URLhttps://server.avala.ai/api/v1
AVALA_TIMEOUTRequest timeout in seconds30
export AVALA_API_KEY=your-api-key
When environment variables are set, you can initialize a client without passing any arguments:
from avala import Client

client = Client()  # reads AVALA_API_KEY automatically

For installation guides, usage examples, and full method references, see the SDK documentation.