Skip to main content
GET
/
api
/
v1
/
misc
/
builtin-tools
List predefined built-in tools
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://blackbox.dasha.ai/api/v1/misc/builtin-tools', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "items": [
    {
      "name": "<string>",
      "description": "<string>"
    }
  ]
}

Response

200 - application/json

Returns predefined built-in tools successfully

List of available built-in tools that can be configured for agents. Built-in tools provide standard system functionality like ending conversations or other common operations that agents can invoke during conversations without requiring custom tool implementations.

items
object[]
required

Available built-in tools with their names and descriptions. Use the tool names when configuring which capabilities should be available to your agents during calls.