Skip to main content
GET
/
v1beta2
/
tool
/
run-status
/
{tool_run_uid}
Get Tool Run Status
curl --request GET \
  --url https://api.hunch.tools/v1beta2/tool/run-status/{tool_run_uid} \
  --header 'Authorization: Bearer <token>'
{
  "status": "RUNNING",
  "outputs": [
    {
      "title": "<string>",
      "text": "<string>",
      "files": [
        {
          "uid": "<string>",
          "url": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

authorization
string | null

Path Parameters

tool_run_uid
string
required

Response

Successful Response

The response body returned when checking the status of a tool run.

status
enum<string>
required

The status of a tool run.

Available options:
RUNNING,
COMPLETED,
FAILED
outputs
ToolRunOutput · object[] | null

The outputs of the tool run, if available