Returns detailed information about a specific bot (public bots only)
GET
/v1/bots/{clientId}
curl \
--request GET 'https://api.4mina.app/v1/bots/{clientId}'
Response examples (200)
{
"success": true,
"data": {
"bot": {
"clientId": "1234567890123456789",
"name": "Amina",
"avatar": "https://cdn.discordapp.com/avatars/...",
"ownerId": "9876543210987654321",
"registeredAt": "2025-05-04T09:42:00Z",
"lastSeen": "2025-05-04T09:42:00Z",
"version": "1.0.0",
"inviteUrl": "https://discord.com/oauth2/authorize?client_id=...",
"supportServer": "https://discord.gg/...",
"website": "https://example.com",
"isPublic": true,
"features": [
"moderation",
"music",
"leveling"
],
"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"
}
}