List tool executions for monitoring and debugging
GET /api/v3/organizations/{organisation}/ai/tools/executions
Lists recent async tool executions for an organization. Useful for debugging, monitoring, and building admin UIs.
*
* Query Patterns:
* - All recent executions: GET /ai/tools/executions
* - Filter by status: GET /ai/tools/executions?status=running
* - Limit results: GET /ai/tools/executions?limit=20
*
* Results:
* - Ordered by creation time (newest first)
* - Limited to 50 by default (configurable via limit parameter)
* - Only shows executions not yet expired (24h TTL)
*
* Use Cases:
* - Monitor all active tool executions
* - Debug failed executions
* - Build admin dashboards
* - Track tool usage patterns
* - Audit async operations
Authorizations
Parameters
Path Parameters
The organisation ID
Query Parameters
Filter by execution status
Maximum number of executions to return
Responses
200
Tool executions retrieved successfully
object
object
exec_abc123def456generate_imageNumber of executions returned
Organization identifier
Filter applied (or ‘all’)
400
Invalid parameters
403
Access denied
500
Failed to retrieve executions