List tasks
Returns a paginated list of tasks (workflow executions).
Filtering
- Use
statusto filter by task status. - Use
workflow_idto only list tasks created from a specific workflow. - Use
workflow_nameto search by workflow name (case-insensitive partial match). - Use
created_at_from/created_at_toto filter by task creation time (ISO 8601, UTC).
Pagination
Use page and limit. The response includes total_pages and total_count.
Documentation Index
Fetch the complete documentation index at: https://docs.browseract.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Send your API key in the Authorization header as Bearer <API_KEY>.
Query Parameters
Filter tasks by status. Current task status.
created: Task is created but not yet runningrunning: Task is currently executingfinished: Task completed successfullycanceled: Task was canceled (e.g., via Stop Task)pausing: Task is transitioning into paused statepaused: Task is paused and can be resumedfailed: Task ended with an errorunknown: Unknown or unsupported status
created, running, finished, canceled, pausing, paused, failed, unknown Only return tasks created from this workflow ID.
Filter by workflow name using a case-insensitive partial match (contains).
Lower bound of task creation time (inclusive). ISO 8601 format, e.g. 2024-01-01T00:00:00Z.
Upper bound of task creation time (inclusive). ISO 8601 format, e.g. 2024-12-31T23:59:59Z.
Page number to retrieve (starts at 1).
x >= 1Number of tasks per page (max 500).
1 <= x <= 500
