curl --request GET \
--url https://api.anam.ai/v1/tools \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "0084f07b-6106-4cd8-be32-a66a64284b31",
"name": "search_knowledge_base",
"description": "Search the knowledge base for product information",
"type": "CLIENT",
"config": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"usageCount": 123
}
],
"meta": {
"total": 123,
"page": 123,
"perPage": 123,
"totalPages": 123
}
}Returns a list of all tools for the organization
curl --request GET \
--url https://api.anam.ai/v1/tools \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "0084f07b-6106-4cd8-be32-a66a64284b31",
"name": "search_knowledge_base",
"description": "Search the knowledge base for product information",
"type": "CLIENT",
"config": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"usageCount": 123
}
],
"meta": {
"total": 123,
"page": 123,
"perPage": 123,
"totalPages": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Page number for pagination
x >= 1Number of items per page
1 <= x <= 100Filter tools by name, description, or ID
Was this page helpful?