Getting Started

Authentication

The Extend API uses Bearer token authentication for all API requests. You’ll need to use your API token when instantiating the client if you’re using the SDK or in the Authorization header of each request if you’re using the API directly.

Log in to the Extend dashboard and obtain an Extend API key from the Developer Settings page.

Example Usage

POST
/workflow_runs
1curl -X POST https://api.extend.ai/workflow_runs \
2 -H "x-extend-api-version: 2025-04-21" \
3 -H "Authorization: Bearer <token>" \
4 -H "Content-Type: application/json" \
5 -d '{
6 "workflowId": "workflow_id_here"
7}'

Next Steps