Documentation Index
Fetch the complete documentation index at: https://docs.velahq.xyz/docs/llms.txt
Use this file to discover all available pages before exploring further.
Install
Requirements
- Python 3.9+
- Runtime dependency: httpx (installed automatically)
Set up credentials
export VELA_CLIENT_SECRET="vela_cs_..."
export VELA_API_KEY="vela_live_..."
Verify the installation
import os
from vela import VelaManagementClient
with VelaManagementClient(os.environ["VELA_CLIENT_SECRET"]) as client:
apps = client.apps.list()
print(f"Connected! Found {len(apps)} app(s).")