Authorization request header — no bearer prefix, token scheme, or encoding required.
Generating an API Key
1
Log in to discord.place
Go to discord.place and sign in with your Discord account.
2
Open your bot's manage page
Navigate to your bot’s listing and click the Manage button.
3
Go to the API Keys tab
Inside the manage page, select the API Keys tab from the navigation.
4
Generate a new key
Click Generate API Key. Copy the key immediately — it will not be shown again. You can rotate the key at any time from the same tab.
Using the API Key
Include the key as the value of theAuthorization header on every authenticated request:
Error Responses
If theAuthorization header is missing or the key is invalid, the API returns a 401 response.
- Missing key
- Invalid key
Security Best Practices
- Store API keys in environment variables or a secrets manager — never hard-code them.
- Restrict access to the key to only the services that need it.
- Rotate the key if there is any chance it was exposed.
- Do not log the raw value of the
Authorizationheader in production.

