Returns a paginated list of all bots registered with the API that are marked as public.
- Default limit: 20
- Maximum limit: 100
- Pagination metadata is returned under
meta.
GET
/v1/bots
curl \
--request GET 'https://api.4mina.app/v1/bots'
Response examples (200)
{
"success": true,
"data": {
"bots": [
{
"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"
]
}
]
},
"meta": {
"total": 123,
"page": 1,
"limit": 20,
"pages": 7,
"hasMore": true
}
}