🛰️
BOT API
PROXY
botapiproxy.ru

Зеркало api.telegram.org. Поменяйте один адрес — и бот снова на связи. Без VPN и переписывания кода.

Fast Reliable Secure
🐱😺😸

// быстрый старт

api.telegram.org botapiproxy.ru

Укажите этот домен базовым адресом Bot API. Токен от @BotFather — как обычно, в пути запроса.

// примеры

cURL
Python
Node.js
URL
terminal
curl "https://botapiproxy.ru/bot<ТОКЕН>/sendMessage" \
  -d chat_id=123456 \
  -d text=Привет!
from telegram.ext import ApplicationBuilder

app = (
    ApplicationBuilder()
    .token("<ТОКЕН>")
    .base_url("https://botapiproxy.ru/bot")
    .base_file_url("https://botapiproxy.ru/file/bot")
    .build()
)
const bot = new TelegramBot(token, {
  baseApiUrl: "https://botapiproxy.ru",
  polling: true,
});
# вызов метода
https://botapiproxy.ru/bot<ТОКЕН>/getMe

# скачивание файла
https://botapiproxy.ru/file/bot<ТОКЕН>/<file_path>