cURL
curl --request GET \ --url https://api.xpander.ai/v1/toolkits/{toolkit_id}/tools \ --header 'x-api-key: <api-key>'
[ { "id": "send-email-tool-uuid", "name": "Send Email", "description": "Sends an email with HTML body content" } ]
Returns toolkit tools in tool calling structure
Show Parameters Schema
curl -X GET -H "x-api-key: <your-api-key>" \ "https://api.xpander.ai/v1/toolkits/<toolkit-id>/tools"
[ { "name": "send_message", "description": "Send a message to a Slack channel or user", "parameters": { "type": "object", "properties": { "channel": { "type": "string", "description": "The Slack channel ID or name to send the message to" }, "message": { "type": "string", "description": "The message content to send" }, "thread_ts": { "type": "string", "description": "Optional thread timestamp to reply in a thread" } }, "required": ["channel", "message"] } }, { "name": "get_channels", "description": "List all Slack channels in the workspace", "parameters": { "type": "object", "properties": { "limit": { "type": "integer", "description": "Maximum number of channels to return (default: 20)" } }, "required": [] } }, { "name": "list_users", "description": "Get list of users in the Slack workspace", "parameters": { "type": "object", "properties": { "include_bot_users": { "type": "boolean", "description": "Whether to include bot users (default: false)" } }, "required": [] } } ]
name
API Key for authentication
Successful Response
Was this page helpful?
Suggestions