curl --request GET \
--url https://api.sidenet.ai/v1/tools \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.sidenet.ai/v1/tools"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.sidenet.ai/v1/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.sidenet.ai/v1/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 => [
"Authorization: Bearer <token>"
],
]);
$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.sidenet.ai/v1/tools"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.sidenet.ai/v1/tools")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sidenet.ai/v1/tools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"static": {
"rich-ui-components": {
"id": "rich-ui-components",
"name": "Rich UI components",
"type": "static",
"tools": {
"render-chart": {
"id": "render-chart",
"name": "render-chart",
"description": "Renders a chart in the chat surface",
"inputSchema": {
"type": "object",
"properties": {
"spec": {
"type": "object"
}
}
},
"toolRef": {
"source": "static",
"key": "render-chart"
}
}
}
}
},
"mcp": {},
"custom": {
"Acme CRM": {
"id": "8d3b1a75-6c02-4e59-b84f-27a9d5e10c63",
"name": "Acme CRM",
"type": "api",
"base_url": "https://api.acme.example",
"tools": {
"Acme_CRM_get_customer": {
"id": "Acme_CRM_get_customer",
"name": "Get customer",
"description": "Fetches one customer by id",
"inputSchema": {
"type": "object",
"properties": {
"customerId": {
"type": "string"
}
},
"required": [
"customerId"
]
},
"toolRef": {
"source": "custom",
"id": "c07f2b95-8d41-4e63-a029-5f7b1c8d3e40"
}
}
}
}
},
"pagination": {
"limit": 50,
"offset": 0,
"total": 2,
"returned": 2,
"hasMore": false
}
}List tools
Returns all available tools (static, MCP, and custom) grouped by provider. Each tool carries a toolRef — the stable reference object to store in a workflow tool step. Copy it verbatim; do not derive it from the grouping (global MCP tools group under mcp but use { source: "static", key }).
Pass basic=true for a compact catalogue that fits an agent context window: each provider is reduced to id, name, type, base_url and each tool to id, name, description — no JSON schemas, no auth config, no toolRef. Re-request without basic (or use GET /v1/tool-providers/:id) when you need a tool’s schema or its toolRef.
limit/offset paginate over items, where an item is one tool plus one slot for each provider that has no tools. Providers are re-grouped per page, so merging pages means merging the static/mcp/custom maps. Without limit the full catalogue is returned, as before. pagination reports { limit, offset, total, returned, hasMore }.
curl --request GET \
--url https://api.sidenet.ai/v1/tools \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.sidenet.ai/v1/tools"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.sidenet.ai/v1/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.sidenet.ai/v1/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 => [
"Authorization: Bearer <token>"
],
]);
$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.sidenet.ai/v1/tools"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.sidenet.ai/v1/tools")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sidenet.ai/v1/tools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"static": {
"rich-ui-components": {
"id": "rich-ui-components",
"name": "Rich UI components",
"type": "static",
"tools": {
"render-chart": {
"id": "render-chart",
"name": "render-chart",
"description": "Renders a chart in the chat surface",
"inputSchema": {
"type": "object",
"properties": {
"spec": {
"type": "object"
}
}
},
"toolRef": {
"source": "static",
"key": "render-chart"
}
}
}
}
},
"mcp": {},
"custom": {
"Acme CRM": {
"id": "8d3b1a75-6c02-4e59-b84f-27a9d5e10c63",
"name": "Acme CRM",
"type": "api",
"base_url": "https://api.acme.example",
"tools": {
"Acme_CRM_get_customer": {
"id": "Acme_CRM_get_customer",
"name": "Get customer",
"description": "Fetches one customer by id",
"inputSchema": {
"type": "object",
"properties": {
"customerId": {
"type": "string"
}
},
"required": [
"customerId"
]
},
"toolRef": {
"source": "custom",
"id": "c07f2b95-8d41-4e63-a029-5f7b1c8d3e40"
}
}
}
}
},
"pagination": {
"limit": 50,
"offset": 0,
"total": 2,
"returned": 2,
"hasMore": false
}
}Authorizations
Organization API key, generated in studio.sidenet.ai. Backend only — never in a browser.
Query Parameters
Return only provider id/name/type/base_url and per-tool id/name/description. Off by default.
Max items to return (max 500). Omit to return the full catalogue.
0 <= x <= 50050
Items to skip before the page. Defaults to 0.
x >= 0Response
The catalogue, grouped by provider kind, plus the page window