Skip to main content

List Platform Tools

GET /api/v1/platform-tools
Returns the public catalog of tools that can be attached to an agent’s toolAllowlist — e.g. web search, web fetch, and other built-ins. This endpoint is unauthenticated and returns only display metadata (no secrets or usage data).
agentKind
string
Filter to tools compatible with a given agent kind.
runtimeMode
string
Filter to tools compatible with a given runtime mode (assist or autonomous).
tools
object[]
curl "https://suite.sundaypyjamas.com/api/v1/platform-tools?runtimeMode=autonomous"
{
  "tools": [
    {
      "toolId": "web_search",
      "name": "Web Search",
      "description": "Search the web for current information",
      "category": "research",
      "executionKind": "builtin",
      "agentKinds": ["agent"],
      "runtimeModes": ["assist", "autonomous"]
    }
  ]
}