Returns list of commands for a specific bot (public bots only)
GET
/v1/bots/{clientId}/commands
curl \
--request GET 'https://api.4mina.app/v1/bots/{clientId}/commands'
Response examples (200)
{
"success": true,
"data": {
"commands": [
{
"name": "ping",
"description": "Check bot latency",
"category": "Utilities",
"usage": "/ping",
"examples": [
"string"
],
"aliases": [
"string"
],
"cooldown": 42,
"permissions": [
"string"
],
"botPermissions": [
"string"
],
"nsfw": true,
"ownerOnly": true
}
],
"categories": [
"Moderation",
"Utilities",
"Fun"
],
"totalCommands": 50,
"lastUpdated": "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"
}
}