Workspace API Key
Use this key in the SDK.
Loading API key...
The same key is used by the SDK and dashboard requests.
Loading the current workspace key and database route.
The same key is used by the SDK and dashboard requests.
This is the PostgreSQL database URL captured during workspace setup. A2EA stores it in the control plane so the workspace knows where tenant telemetry should be written and queried.
If this field is empty, the workspace is not connected yet. Paste the tenant database URL here and save it before sending tracked tasks.
pip install a2ea-py
from a2ea import A2EAClient
client = A2EAClient(
api_key="your X-A2EA-API-Key"
)@client.track_agent(task_type="data_processing")
def run_agent(payload):
return process(payload)