cURL
curl --request GET \ --url https://api.toolrouter.ai/s/{client_id}/list_tools \ --header 'Authorization: Bearer <token>'
{ "tools": [ { "name": "google-calendar_list_events", "description": "List calendar events within a specified time range", "inputSchema": { "type": "object", "properties": { "timeMin": { "type": "string", "description": "Start time (ISO string)" }, "timeMax": { "type": "string", "description": "End time (ISO string)" }, "maxResults": { "type": "number", "description": "Maximum number of events to return" } } } } ] }
Returns all tools from the system that the user has access to
Enter your Stack token
Client ID for authentication
Optional schema format (e.g., 'openai')
List of available tools
The response is of type object.
object