Skip to main content
GET
/
tools
/
{tool_id}
Get Tool by ID
curl --request GET \
  --url https://api.kallabot.com/tools/{tool_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "category": "<string>",
    "tags": [
      "<string>"
    ],
    "isActive": true,
    "lastTested": "2023-11-07T05:31:56Z",
    "testStatus": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

tool_id
string
required

Response

Tool details

success
boolean
message
string
data
object