Endpoints

BASE URL api.discord.place

Update Bot Stats

PATCH /bots/:bot_id/stats

Using this endpoint, you can update the command value that appear on the bot page. We recommend you to do this every 24 hours and keep the page updated with this endpoint.

Headers

Body

Just a heads-up

Even though you set the server count, this value can only be at most 50 more or less than the actual server count of your bot.

Response

{
  "success": true
}

Fetch Vote Status

GET /bots/:bot_id/voters/:user_id

Check if user has voted for your bot in the last 24 hours.

Headers

Response

{
  "voted": false,
  "vote": 0,
  "lastVote": null
}
{
  "voted": true,
  "vote": 1,
  "lastVote": 1726566555943 // Tue Sep 17 2024 12:49:15 GMT+0300 (GMT+03:00)
}

Last updated