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));curl --request GET \
--url https://blackbox.dasha.ai/api/v1/misc/builtin-tools \
--header 'Authorization: Bearer <token>'import requests
url = "https://blackbox.dasha.ai/api/v1/misc/builtin-tools"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"name": "<string>",
"description": "<string>"
}
]
}List predefined built-in tools
Retrieves the list of predefined built-in tools that can be configured for agents. Built-in tools provide standard functionality that agents can use during conversations.
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));curl --request GET \
--url https://blackbox.dasha.ai/api/v1/misc/builtin-tools \
--header 'Authorization: Bearer <token>'import requests
url = "https://blackbox.dasha.ai/api/v1/misc/builtin-tools"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"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.
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.
Show child attributes
Show child attributes
Was this page helpful?