- Bot developer
- Server owner
- Community member
Log in with Discord
discord.place uses Discord OAuth for authentication. No separate account creation is needed — your existing Discord identity is all you need.Visit discord.place
Click Log in
Authorize the application
identify, email, and guilds scopes — these are used to verify your identity, send platform notifications, and let you manage listings for servers you own.Click Authorize to continue.Return to discord.place
Explore the platform
discord.place is organized into distinct sections, each serving a different part of the Discord community.Bots
Emojis
Servers
Profiles
dsc.lat, dsc.gay, dsc.wtf, and dsc.baby.Templates
Sounds
Themes
Blog
Adding your first bot listing
To list your bot on discord.place, it must be publicly inviteable, online, and functional. The review team checks each submission before it goes live.What you’ll need
Before submitting, prepare the following:- Your bot’s application ID (from the Discord Developer Portal)
- A short description (16–150 characters) summarizing what your bot does
- A full description (32–8,192 characters) with detailed information — this field supports Markdown
- At least one category from: Moderation, Utility, Fun & Games, Music, Economy, Roleplay, Technology, Art & Design, Virtual Assistants, Social Media Integration, Anime & Manga, or Other
- Up to 4 extra owners (optional) — other Discord users who co-own the bot
- A support server invite (optional but recommended) — must be a valid Discord webhook URL
Submit your bot
Navigate to the bots section
Enter your bot's application ID
Fill in the listing details
Submit for review
Review requirements
The review team will reject submissions that don’t meet these standards:Bot must be online and inviteable
Bot must be online and inviteable
Bot must support slash commands
Bot must support slash commands
No copied or reposted bots
No copied or reposted bots
No Discord Terms of Service violations
No Discord Terms of Service violations
Accurate and honest descriptions
Accurate and honest descriptions
No security vulnerabilities
No security vulnerabilities
Adding your first server listing
Server listings help community members discover your Discord server. Before listing, your server must meet several eligibility criteria that are automatically verified.Server eligibility requirements
discord.place checks the following automatically when you attempt to list:Submit your server
Navigate to the servers section
Select your server
Fill in the listing details
Optionally add a webhook
https://discord.com/api/webhooks/{id}/{token}.Submit for review
Getting an API key for your bot
Once your bot listing is approved, you can generate an API key to programmatically update your bot’s stats — server count, command count, and more.Go to your bot's manage page
Open the API keys tab
Create a new API key
production or stats-updater). The key will be shown once — copy it immediately and store it securely.Making your first API call
With your API key in hand, you can update your bot’s stats using the discord.place REST API. The base URL for all API requests ishttps://api.discord.place.
Update bot stats
Send aPATCH request to update your bot’s server count and command count:
{BOT_ID} with your bot’s Discord application ID and YOUR_API_KEY with the key you generated above.
Request body
Response
A successful update returns200 OK with { "success": true }. If the server_count you provide differs from the actual count by more than the configured threshold (at least 50, or 10% of the actual count — whichever is larger), the request will be rejected to prevent inflated stats.
Using a library
If you’re using Node.js, you can usefetch directly:

