Quick check if a bot is currently online (public bots only)
GET
/v1/bots/{clientId}/status
curl \
--request GET 'https://api.4mina.app/v1/bots/{clientId}/status'
Response examples (200)
{
"success": true,
"data": {
"online": true,
"lastSeen": "2025-05-04T09:42:00Z"
},
"meta": {
"generatedAt": "2025-05-04T09:42:00Z"
}
}
Response examples (404)
{
"success": false,
"error": {
"message": "string",
"code": "string"
},
"meta": {
"generatedAt": "2025-05-04T09:42:00Z"
}
}