List client tools
curl --request GET \
--url https://api.getnexor.ai/api/public/client-tools \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.getnexor.ai/api/public/client-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://api.getnexor.ai/api/public/client-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://api.getnexor.ai/api/public/client-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://api.getnexor.ai/api/public/client-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://api.getnexor.ai/api/public/client-tools")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getnexor.ai/api/public/client-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{
"success": true,
"tools": [
{
"id": "7c1b2c3d-0000-4000-8000-000000000002",
"client_id": "3f9a1111-0000-4000-8000-000000000099",
"name": "check_subscription",
"description": "Checks whether the lead has an active subscription",
"url": "https://api.acme.com/subscriptions/status",
"method": "GET",
"timeout_ms": 10000,
"parameters": {
"type": "object",
"properties": {}
},
"headers": {},
"query_parameters": {},
"speak_during_execution": true,
"speak_after_execution": true,
"response_variables": {},
"is_active": true,
"sort_order": 0,
"execution_message_type": null,
"execution_message_description": null,
"llm_response_fields": null,
"created_at": "2026-07-15T12:00:00.000Z",
"updated_at": "2026-07-15T12:00:00.000Z"
}
]
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}List Client Tools
List the client’s reusable tool catalog. A catalog tool can be assigned to multiple agents with POST /client-tools//assign, where it inherits and stays in sync with the catalog row.
GET
/
client-tools
List client tools
curl --request GET \
--url https://api.getnexor.ai/api/public/client-tools \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.getnexor.ai/api/public/client-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://api.getnexor.ai/api/public/client-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://api.getnexor.ai/api/public/client-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://api.getnexor.ai/api/public/client-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://api.getnexor.ai/api/public/client-tools")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getnexor.ai/api/public/client-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{
"success": true,
"tools": [
{
"id": "7c1b2c3d-0000-4000-8000-000000000002",
"client_id": "3f9a1111-0000-4000-8000-000000000099",
"name": "check_subscription",
"description": "Checks whether the lead has an active subscription",
"url": "https://api.acme.com/subscriptions/status",
"method": "GET",
"timeout_ms": 10000,
"parameters": {
"type": "object",
"properties": {}
},
"headers": {},
"query_parameters": {},
"speak_during_execution": true,
"speak_after_execution": true,
"response_variables": {},
"is_active": true,
"sort_order": 0,
"execution_message_type": null,
"execution_message_description": null,
"llm_response_fields": null,
"created_at": "2026-07-15T12:00:00.000Z",
"updated_at": "2026-07-15T12:00:00.000Z"
}
]
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}Last modified on August 7, 2026
⌘I