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).
Filter to tools compatible with a given agent kind.
Filter to tools compatible with a given runtime mode (assist or autonomous).
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"]
}
]
}