API reference · Tools
List calls
What this tool has actually done, most recent first.
- Authentication
- Bearer token
- Retries
- Safe to repeat
- Body
- None
- Version
- 2026-09-03
failed_only is the triage path and is served by ix_tool_calls_failures, so it does not scan the successes - which are, on a working tool, nearly all of the rows.
Path parameters
tool_idstring (uuid)required
Query parameters
pageintegerDefault: 1·≥ 1
page_sizeintegerDefault: 20·≥ 1 and ≤ 100
failed_onlybooleanDefault: false
Responses
- 200OKapplication/json
PaginatedResponse_ToolInvocationResponse_
itemsarray of ToolInvocationResponserequired15 fields · ToolInvocationResponse
argumentsobjectrequiredattemptsintegerrequiredbot_idstring (uuid)requiredcall_idstringrequiredconversation_idstring (uuid) | nullrequiredcreated_atstring (date-time)requiredduration_msintegerrequirederror_codestring | nullrequiredidstring (uuid)requiredokbooleanrequiredresultstring | nullrequiredstatus_codeinteger | nullrequiredstepintegerrequiredtool_idstring (uuid) | nullrequiredtool_namestringrequired
pageintegerrequiredpage_sizeintegerrequiredtotalintegerrequiredhas_morebooleanDefault: false
next_cursorstring | null
5 response headers
- RateLimit-Limit
Requests permitted in the current window.
- RateLimit-Remaining
Requests left in the current window. Back off before it reaches 0.
- RateLimit-Reset
Seconds until the current window resets.
- X-API-Version
The dated version of the API contract that served this response, e.g.
2026-09-03. Pin against it; it changes only when a response shape changes incompatibly.- X-Request-ID
Quote this in a support request to identify the call.
- 422Validation error
The shared error envelope, served as
application/problem+jsonwitherror.codeset to validation_error. Its details name each field that failed and why.
Example request
curl "https://api.integrable.cloud/api/tools/$TOOL_ID/calls" \
-H "Authorization: Bearer $INTEGRABLE_API_KEY"Set INTEGRABLE_API_KEY and the path variables first. The same call from the TypeScript or Python SDK takes the same fields.
Example response
{
"has_more": false,
"items": [
{
"arguments": {},
"attempts": 0,
"bot_id": "01a0652b-3713-7ea1-a6c9-2e895389ec34",
"call_id": "01a0652b-3713-7ea1-a6c9-2e895389ec34",
"conversation_id": "01a0652b-3713-7ea1-a6c9-2e895389ec34",
"created_at": "2026-09-03T09:30:00Z",
"duration_ms": 0,
"error_code": "string",
"id": "01a0652b-3713-7ea1-a6c9-2e895389ec34",
"ok": true,
"result": "string",
"status_code": 0,
"step": 0,
"tool_id": "01a0652b-3713-7ea1-a6c9-2e895389ec34",
"tool_name": "string"
}
],
"next_cursor": "string",
"page": 0,
"page_size": 20,
"total": 0
}Generated from the schema above — the shape is exact, the values are placeholders.
Errors
Failures use one envelope on every endpoint, described in Retries, versioning and limits. The codes you are most likely to meet here:
validation_error· 422 — The payload was well-formed JSON but failed schema validation.unauthenticated· 401 — The request carried no API key, or one the API could not verify.forbidden· 403 — The key is valid, but it is not allowed to do this — either the scope is missing or the resource belongs to another workspace.rate_limited· 429 — Too many requests in the current window. The limit is per workspace, and some endpoints add a per-bot limit on top.
More Tools endpoints
Something here wrong or missing? Tell us — the documentation and the API are maintained by the same person, so a correction is a fix rather than a ticket.