Documentation Index
Fetch the complete documentation index at: https://docs.chamelio.ai/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Authentication
This endpoint requires authentication via API key. Include your API key in theX-API-Key header:
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
active_only | boolean | No | Only return active workflows. Defaults to false |
Request Example
Response
Success Response
Status Code:200 OK
Response Fields
| Field | Type | Description |
|---|---|---|
workflows | array | List of available workflow schemas |
total | integer | Total number of workflows returned |
Workflow Schema Fields
| Field | Type | Description |
|---|---|---|
workflow_id | string | Unique identifier for the workflow |
workflow_name | string | Human-readable workflow name |
version | integer | Workflow version number |
description | string | Description of what the workflow does |
is_active | boolean | Whether the workflow is currently active |
variables | array | List of input variables for the workflow |
Error Responses
401 Unauthorized
Returned when authentication fails. See the authentication errors section for details.500 Internal Server Error
Returned when the request fails due to a server error.Notes
Use the
workflow_id and version from this response to get the full workflow schema or initiate a workflow instance.Use Cases
This endpoint is useful for:- Workflow discovery - Explore available workflows in your organization
- Dynamic integrations - Build applications that adapt to available workflows
- Workflow management - Monitor which workflows are active
- User interfaces - Populate workflow selection dropdowns