Webhooks
Connect external systems to your agents using webhook endpoints
Webhooks enable you to trigger xpander.ai agents from any external system that can make HTTP requests. Each agent has a unique webhook URL for programmatic interaction.
Accessing Your Webhook URL
Agent Builder Interface
To find your webhook URL:
- Navigate to your agent in the Agent Builder
- Click the “Webhook” option in the center of the graph view
- The Webhook Configuration panel will open, providing:
- Ready-to-use code snippets
- Configuration instructions
- Testing capabilities
- Webhook management options
Webhook Configuration Interface
Making Webhook Requests
Required Parameters
Parameter | Type | Description |
---|---|---|
agent_id | string | The unique identifier of your agent |
source_node_id | string | The starting node ID in your agent’s workflow |
x-api-key | string | Your API key for authentication (header or query parameter) |
asynchronous | boolean | Whether to wait for completion (false ) or return immediately (true ) |
Request Body Options
Option | Type | Description |
---|---|---|
files | file | One or more files to process (PDF, PNG, JPEG, GIF, WEBP) |
prompt | string | A text prompt to send to the agent |
When uploading files, you must send the actual files using multipart/form-data
. Direct external URLs to files are not supported as inputs. The platform will generate secure presigned URLs for your agent to access the uploaded files.
Content Types
- With files: Use
multipart/form-data
(curl handles this automatically with--form
) - JSON only: Use
application/json
with the appropriate header
File Handling
Supported File Types
xpander.ai supports a variety of file formats:
- Documents: PDF
- Images: PNG, JPEG, GIF, WEBP
Uploading Multiple Files
To process multiple files in a single request:
For large batches of files (10+ files), we recommend:
- Using asynchronous mode (
asynchronous=true
) - Breaking uploads into multiple requests of 5-10 files each
- Using a dedicated file uploader with retry capabilities
File URL Mechanism
When you upload files through the webhook:
- xpander.ai automatically handles storage of your files
- Your agent receives secure presigned URLs to access these files
- These URLs remain valid for 30 days after upload
- Files are accessible only to your organization’s agents
All uploaded files are stored securely on our platform. Your agent doesn’t need to handle file storage or download logic - it will automatically receive properly formatted URLs to access the files.
Synchronous vs Asynchronous Requests
Synchronous Mode
- HTTP request remains open until agent completes
- Returns complete execution details and results
- Best for immediate responses and short tasks
Response:
Asynchronous Mode
- Returns immediately while agent processes in background
- Best for long-running tasks and large file processing
- Allows your application to continue execution
Response:
Example: OCR Document Processing
This example shows how to extract text from a document using the OCR agent:
The OCR agent handles multiple document formats (PDFs and images) and preserves formatting when possible, including tables and structured content.
Sample OCR Result
Monitoring Webhook Activity
xpander.ai provides a comprehensive monitoring interface for webhook calls:
Webhook Monitoring Interface
The monitoring dashboard displays:
- Complete execution logs
- File processing details
- Performance metrics
- Full request/response data
Common Use Cases
Workflow Automation
Integrate with platforms like Zapier, Make.com, or n8n to trigger document processing based on external events.
Document Processing
Extract structured data from documents to automate data entry and analysis workflows.