Skip to main content
GET
/
tools
List API Tools
curl --request GET \
  --url https://api.kallabot.com/tools \
  --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.

Query Parameters

category
string

Filter by tool category

is_active
boolean

Filter by active status

Search in tool names and descriptions

Response

List of tools

success
boolean
message
string
data
object[]