Dark mode is now available in beta
cURL
curl --request POST \ --url http://localhost:3000/api/user/assistants \ --header 'Content-Type: application/json' \ --data ' { "type": "admin", "name": "cod" } '
{ "success": true, "data": [ { "_id": "688b024f7db6fe6e921399e3", "name": "Code Analyzer", "description": "The Code Analyzer systematically examines your code...", "status": "active", "liked_count": 1, "admin_only": false } ] }
Retrieves a list of assistants based on search criteria such as type and name filters
Type filter for assistants (e.g., "admin")
Name filter for searching assistants
Successfully retrieved assistants list
Indicates if the request was successful
Array of assistant objects matching the search criteria
Show child attributes
Was this page helpful?