Skip to main content
GET
/
v1
/
tools
Listar catálogo de tools disponibles
curl --request GET \
  --url https://agents.studio.getsupervisor.ai/v1/tools \
  --header 'Authorization: Bearer <token>' \
  --header 'x-workspace-id: <x-workspace-id>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "identifier": "<string>",
      "enabled": true,
      "auth": "none",
      "requiresUserAuth": true,
      "description": "<string>",
      "category": "<string>",
      "configSchema": {
        "schemaVersion": "json-schema/2020-12",
        "actions": {}
      }
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "hasNext": true,
    "hasPrevious": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-workspace-id
string<uuid>
required

Identificador del workspace multi-tenant.

Query Parameters

agentType
enum<string>

Filtra tools compatibles con el tipo de agente.

Available options:
chat,
voice
page
integer
default:1

Número de página (>= 1). Por defecto es 1.

Required range: x >= 1
limit
integer
default:20

Tamaño de página (1..100). Por defecto 20.

Required range: 1 <= x <= 100

Response

Catálogo de tools

data
object[]
required
meta
object
required