Get Tools
curl --request GET \
--url https://tavusapi.com/v2/tools \
--header 'x-api-key: <api-key>'import requests
url = "https://tavusapi.com/v2/tools"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://tavusapi.com/v2/tools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://tavusapi.com/v2/tools",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://tavusapi.com/v2/tools"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://tavusapi.com/v2/tools")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://tavusapi.com/v2/tools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"tool_id": "tabc123def456",
"owner_id": 3675,
"name": "get_weather",
"description": "Get the current weather for a city",
"parameters": {
"type": "object",
"properties": {
"city": {
"type": "string",
"description": "City name"
}
},
"required": [
"city"
]
},
"delivery": {
"app_message": true,
"api": {
"url": "https://api.example.com/v1/weather/{city}",
"method": "POST",
"timeout": 10,
"headers": {
"X-Service": "weather-bot"
},
"auth": {
"type": "none",
"token": "<string>",
"username": "<string>",
"password": "<string>",
"name": "X-API-Key",
"value": "<string>",
"location": "header",
"secret": "<string>",
"token_url": "https://auth.example.com/oauth/token",
"client_id": "<string>",
"client_secret": "<string>",
"scope": "<string>"
},
"body_template": {},
"query_params": {
"units": "metric"
},
"content_type": "application/json"
}
},
"is_system_tool": false,
"trigger_type": "in_call",
"origin": "llm",
"on_call": "generate_filler",
"on_resolve": "generate_response",
"static_filler": "Sure, let me grab that for you.",
"created_at": "2026-05-15T10:30:00",
"updated_at": "2026-05-15T10:30:00"
}
],
"total_count": 12
}{
"message": "Invalid access token"
}Tools
Get Tools
Returns a paginated list of tools. The type query parameter controls which tools are returned:
type=user(default) - tools you created via Create Tool.type=system- built-in system tools Tavus provides. These are always available to every conversation; you do not need to attach them. The only system tool today isend_call, which lets the PAL hang up at a natural stopping point.type=all- both, with system tools listed first.
System tools have is_system_tool: true, an owner_id of null, and use their name as the tool_id (e.g. end_call). They cannot be created, updated, or deleted.
GET
/
v2
/
tools
Get Tools
curl --request GET \
--url https://tavusapi.com/v2/tools \
--header 'x-api-key: <api-key>'import requests
url = "https://tavusapi.com/v2/tools"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://tavusapi.com/v2/tools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://tavusapi.com/v2/tools",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://tavusapi.com/v2/tools"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://tavusapi.com/v2/tools")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://tavusapi.com/v2/tools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"tool_id": "tabc123def456",
"owner_id": 3675,
"name": "get_weather",
"description": "Get the current weather for a city",
"parameters": {
"type": "object",
"properties": {
"city": {
"type": "string",
"description": "City name"
}
},
"required": [
"city"
]
},
"delivery": {
"app_message": true,
"api": {
"url": "https://api.example.com/v1/weather/{city}",
"method": "POST",
"timeout": 10,
"headers": {
"X-Service": "weather-bot"
},
"auth": {
"type": "none",
"token": "<string>",
"username": "<string>",
"password": "<string>",
"name": "X-API-Key",
"value": "<string>",
"location": "header",
"secret": "<string>",
"token_url": "https://auth.example.com/oauth/token",
"client_id": "<string>",
"client_secret": "<string>",
"scope": "<string>"
},
"body_template": {},
"query_params": {
"units": "metric"
},
"content_type": "application/json"
}
},
"is_system_tool": false,
"trigger_type": "in_call",
"origin": "llm",
"on_call": "generate_filler",
"on_resolve": "generate_response",
"static_filler": "Sure, let me grab that for you.",
"created_at": "2026-05-15T10:30:00",
"updated_at": "2026-05-15T10:30:00"
}
],
"total_count": 12
}{
"message": "Invalid access token"
}Authorizations
Query Parameters
Page size. Default 10.
1-indexed page number. Default 1.
Sort order by created_at. Default asc.
Available options:
asc, desc Which tools to return.
Available options:
user, system, all Optional filter. Case-insensitive substring match against name, or exact match against tool_id.

