Skip to main content
GET
/
api
/
tools
List Tools
curl --request GET \
  --url https://api.example.com/api/tools
{
  "tools": [
    {
      "tool_id": "tool_123",
      "name": "CheckInventory",
      "description": "Checks stock level for an item",
      "method": "GET",
      "url": "https://api.store.com/inventory"
    }
  ],
  "organization": "My Org"
}
List all custom tools configured for your organization.

Response

tools
array
List of tool objects.
{
  "tools": [
    {
      "tool_id": "tool_123",
      "name": "CheckInventory",
      "description": "Checks stock level for an item",
      "method": "GET",
      "url": "https://api.store.com/inventory"
    }
  ],
  "organization": "My Org"
}