cURL
curl --request GET \ --url https://api.xpander.ai/v1/toolkits \ --header 'x-api-key: <api-key>'
{ "items": [ { "id": "8904cc9f-a3f2-4e8e-8123-036dbaecb951", "name": "Email Service", "description": "Send emails with HTML content", "category": "messaging", "tool_count": 3 } ], "total": 1, "page": 1, "per_page": 20, "total_pages": 1 }
Returns a paginated list of available toolkits
Show Toolkit Object
curl -X GET -H "x-api-key: <your-api-key>" \ "https://api.xpander.ai/v1/toolkits?page=1&per_page=20"
{ "items": [ { "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479", "name": "Slack Integration", "description": "Tools for interacting with Slack channels and users", "tools": ["send-message", "get-channels", "list-users"] }, { "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8", "name": "GitHub Connector", "description": "Tools for GitHub repository and issue management", "tools": ["create-issue", "list-repos", "get-commit-history"] } ], "total": 2, "page": 1, "per_page": 20, "total_pages": 1 }
id
API Key for authentication
Page number (starting from 1)
x >= 1
Items per page (max 50)
1 <= x <= 50
Successful Response
Show child attributes
Was this page helpful?
Suggestions