Skip to main content
GET
/
v1
/
tools
List Tools
curl --request GET \
  --url https://api.xpander.ai/v1/tools \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "logo": "<string>",
      "status": "<string>",
      "total_operations": 123,
      "using_built_in_auth": true,
      "connections": [
        {
          "id": "<string>",
          "name": "<string>",
          "access_scope": "<string>",
          "is_service_account": false,
          "owner": "<string>",
          "version": "<string>",
          "open_api_spec_id": "<string>",
          "created_at": "2023-11-07T05:31:56Z"
        }
      ],
      "transport": "<string>",
      "auth_type": "<string>",
      "url": "<string>"
    }
  ],
  "total": 123,
  "page": 123,
  "per_page": 123,
  "total_pages": 123
}
Discover everything you can attach to an agent or workflow in one place. Filter with ?type= (connector, agent, workflow, custom_function, mcp) and optionally ?query=. MCP entries come from your organization’s MCP registry.

Authorizations

x-api-key
string
header
required

API Key for authentication

Query Parameters

type
enum<string> | null

Filter by tool kind. Kind of attachable tool in the unified catalog.

Available options:
connector,
agent,
workflow,
custom_function,
mcp
query
string | null

Optional search query.

page
integer
default:1
Required range: x >= 1
per_page
integer
default:20
Required range: 1 <= x <= 50

Response

Successful Response

items
ToolCatalogItem · object[]
required
total
integer
required
page
integer
required
per_page
integer
required
total_pages
integer
required