Post your server count
One POST on a timer. The number appears on your page and in every listing row.
Check a vote
The endpoint behind vote-for-perks. 600 requests a minute, per bot.
Receive vote webhooks
We POST to your URL when somebody votes. Signed, and retried five times.
Publish your commands
Forward what you registered with Discord. Your page stops going stale.
Get a token
1
List your bot
Submit it with its Discord application
id. Approval is manual and usually same-day.
2
Open its edit page
https://discordbotlist.lol/bot/<your-bot-id>/edit, under API token.3
Generate the token
It is shown once. Store it the way you store your Discord token — in the
environment, not in the repository. Losing it means generating a new one,
which invalidates the old immediately.
Your first request
Response
What each endpoint costs you
Rate limits are per token, per minute, and they are sized for what the endpoint is actually for rather than set to one number for tidiness.
A
429 carries retryAfter in seconds. Back off on it rather than retrying
immediately — the limiter is per token, so a tight retry loop only spends your
own budget.
If our Redis is down the limiter fails open, not closed. A cache outage
must not stop a running bot from posting its count; the token still has to be
valid either way.