v1.0
Complete bot integration for creating, managing and scaling intelligent bots on Nexus.
Endpoints
8
Authentication
Bearer Token
Base URL
anonixs.pp.ua
Version
v1
All requests require an Authorization header with your bot token:
Send text message with support for reply, forward, inline keyboards and comments
{
"chat_id": "string|int",
"text": "string",
"parse_mode": "HTML | Markdown",
"reply_to_message_id": 123,
"forward_from": 456,
"disable_notification": false,
"keyboard": {
"inline": true,
"buttons": [
{"text": "Button", "url": "https://example.com"}
]
},
"language": "auto | en | ru | uk | es",
"comments_enabled": true
}
Send photo message
{
"chat_id": "string|int",
"photo": "<file_id | URL | base64>",
"caption": "string",
"parse_mode": "HTML | Markdown",
"reply_to_message_id": 123,
"disable_notification": false
}
Send file message
{
"chat_id": "string|int",
"file": "<file_id | URL | base64>",
"filename": "string",
"caption": "string",
"reply_to_message_id": 123,
"disable_notification": false
}
Edit message text
{
"chat_id": "string|int",
"message_id": 123,
"text": "new text",
"parse_mode": "HTML | Markdown",
"disable_notification": false
}
Delete message
{
"chat_id": "string|int",
"message_id": 123
}
Get new events with long-polling support
Query Parameters: - offset: int - limit: int (max 100) - timeout: int (seconds for long-poll)
Configure webhook with HMAC signature and IP allowlist
{
"url": "https://example.com/webhook",
"max_connections": 50,
"allowed_updates": ["message", "reaction", "call"]
}
Get bot information
{
"id": "bot123",
"username": "my_bot",
"name": "My Bot",
"verified": true
}