API Keys

Copy the workspace key and point the SDK at the tenant database already registered for this workspace.

Loading the current workspace key and database route.

Connecting
Workspace API Key

Use this key in the SDK.

Loading API key...

The same key is used by the SDK and dashboard requests.

Tenant Database

Current PostgreSQL route.

Loading tenant database URL...

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.

Update Database Route

Replace or add the tenant PostgreSQL URL.

If this field is empty, the workspace is not connected yet. Paste the tenant database URL here and save it before sending tracked tasks.

SDK Setup

Install and send the first tracked call.

1Install
pip install a2ea-py
2Initialize
from a2ea import A2EAClient

client = A2EAClient(
    api_key="your X-A2EA-API-Key"
)
3Track
@client.track_agent(task_type="data_processing")
def run_agent(payload):
    return process(payload)