curl --request GET \
--url http://co-mind-platform-host/v1/backends \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"backend": "<string>",
"provider": "<string>",
"supports": [
"<string>"
],
"models": [
"<string>"
]
}
]
}Get all backend instances with their models and capabilities
curl --request GET \
--url http://co-mind-platform-host/v1/backends \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"backend": "<string>",
"provider": "<string>",
"supports": [
"<string>"
],
"models": [
"<string>"
]
}
]
}Bearer token authentication. Supports two token types:
POST /v1/auth/loginPOST /v1/api-tokens, format: cmnd_<tokenId>.<secret>