Get Tool Executions
GET
/api/v1/projects/{project_id}/tool-executions
const url = 'https://aura.strangeworks.com/api/v1/projects/example/tool-executions?limit=100&offset=0';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://aura.strangeworks.com/api/v1/projects/example/tool-executions?limit=100&offset=0' \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”project_id
required
Project Id
string
Query Parameters
Section titled “Query Parameters”limit
Limit
Maximum rows to return.
integer
Maximum rows to return.
offset
Offset
Rows to skip before the returned page.
integer
Rows to skip before the returned page.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
ToolExecutionListResponse
object
executions
required
Executions
Array<object>
ToolExecutionResponseobject
created_at
required
Created At
string format: date-time
id
required
Id
string
project_id
required
Project Id
string
status
required
Status
string
tool_name
required
Tool Name
string
tool_use_id
required
Tool Use Id
string
limit
required
Limit
integer
offset
required
Offset
integer
total
required
Total
integer
Examplegenerated
{ "executions": [ { "card_id": "example", "completed_at": "2026-04-15T12:00:00Z", "conversation_id": "example", "created_at": "2026-04-15T12:00:00Z", "duration_ms": 1, "error_code": "example", "error_text": "example", "execution_source": "example", "file_path": "example", "id": "example", "input_json": { "additionalProperty": "example" }, "message_id": "example", "owner_id": "example", "owner_type": "example", "panel_key": "example", "parent_tool_use_id": "example", "project_id": "example", "result_json": "example", "scope": "example", "started_at": "2026-04-15T12:00:00Z", "status": "example", "stream_id": "example", "tool_name": "example", "tool_use_id": "example", "turn_id": "example" } ], "limit": 1, "offset": 1, "total": 1}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "ctx": {}, "input": "example", "loc": [ "example" ], "msg": "example", "type": "example" } ]}