Trigger your agents from any external system with HTTP requests
Webhook Configuration Interface
Access Task Sources
Enable Webhooks
Get Your Webhook URL
Test Your Webhook
POST
to the root endpoint with your authentication and agent configuration.
Parameter | Type | Location | Description |
---|---|---|---|
agent_id | string | Query or Body | Your agent’s unique identifier |
x-api-key | string | Header or Query | Your API key for authentication |
Parameter | Type | Default | Description |
---|---|---|---|
prompt | string | "" | Text prompt to send to your agent |
asynchronous | boolean | false | Process in background and return immediately |
task_id | string | - | Associate request with specific task ID |
getter | string | - | Extract specific data from response (e.g., "result.summary" ) |
multipart/form-data
. URLs to external files are not supported - the webhook service needs the actual file content.getter
parameter to extract specific data from your agent’s response:
400 Bad Request
agent_id
parameter in your request.401 Unauthorized
403 Forbidden
asynchronous=true
for file processing, complex analysis, or any task taking >30 seconds.