Returns current statistics for a specific bot (public bots only)
GET
/v1/bots/{clientId}/stats
curl \
--request GET 'https://api.4mina.app/v1/bots/{clientId}/stats'
Response examples (200)
{
"success": true,
"data": {
"stats": {
"guilds": 150,
"members": 50000,
"channels": 3000,
"commands": 50,
"ping": 45,
"uptime": 86400,
"memoryUsage": 512,
"status": "online",
"presence": {
"type": "Playing",
"name": "with commands",
"url": "https://example.com"
},
"lastUpdated": "2025-05-04T09:42:00Z",
"hasStats": true
}
},
"meta": {
"generatedAt": "2025-05-04T09:42:00Z"
}
}
Response examples (404)
{
"success": false,
"error": {
"message": "string",
"code": "string"
},
"meta": {
"generatedAt": "2025-05-04T09:42:00Z"
}
}