Developer docs
English

Getting started

Pabal developer docs

Everything you need to use Pabal, build bots and apps on top of it, and run your own Pabal server.

A bot in three minutes

In the Pabal app, send /newbot to @BotFather to create a bot, and you'll get a token. You can start sending requests with that token right away.

# Put in the token you received
TOKEN='100003:AbCdEf…'

# Bot info
curl -s "https://pabal.me/bot$TOKEN/getMe"

# After sending the bot anything from the app: fetch new updates (waits up to 30 seconds)
curl -s "https://pabal.me/bot$TOKEN/getUpdates?timeout=30"

From here, the bot tutorial takes over. If you already have a bot built for Telegram, just change the address from https://api.telegram.org to https://pabal.me.

Which document should I read?

What you want to doDocument
I've just heard of PabalAbout Pabal
I want to chat using the appUsing the app
I want to build a notification bot or a helper botBuild a botWebhooks
I want to run my existing Telegram bot on Pabal tooConnecting a library, Differences from Telegram
I'm wondering about the parameters of one methodBot API reference
I want to build a program (client) that connects as a user accountPabal API — MTProto
I want to run my own Pabal server for my organizationServer installationAdministration and settings

Addresses at a glance

WhatAddressUsed by
Website and linkshttps://pabal.me/Browsers, pabal.me/username links
Bot APIhttps://pabal.me/bot<token>/<method>Bot programs (HTTPS)
Bot API fileshttps://pabal.me/file/bot<token>/<file_path>Downloading photos a bot received
MTProto122.34.175.215:8443The Pabal app, MTProto clients, MTProto bots
Server public keyhttps://pabal.me/docs/server-key.pemThe key MTProto clients build in
Every example in these docs has actually been run

The commands and code were run and checked against a Pabal server on 2026-09-19 with python-telegram-bot 22.8, aiogram 3.31, Telethon 1.42 and curl. Features Pabal doesn't support yet are marked separately on each page.

© 2026 Pabal.me · Based on the Pabal server as of 2026-09-19 Docs home · Pabal.me