Features
- Assign arbitrary tags to users (VIP, Moderator, Spammer, Trusted, etc.)
- Color-coded for visual distinction
- Multiple tags per user
- Per-chat — the same user can have different tags in different chats
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Custom classification system for chat members
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/tags?chat_id= | Get all tags for a chat |
| GET | /api/tags/user?chat_id=&user_id= | Get tags for a user |
| POST | /api/tags/add | Add tag (JSON body) |
| POST | /api/tags/remove?id= | Remove tag by ID |
{
"bot_id": 1,
"chat_id": -1001234567890,
"user_id": 123456789,
"username": "johndoe",
"tag": "VIP",
"color": "#4CAF50"
}
Was this page helpful?