Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Install the vela-sdk package
pip install vela-sdk
export VELA_CLIENT_SECRET="vela_cs_..." export VELA_API_KEY="vela_live_..."
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).")