Get Your API Key
Before making your first request, you need an API key. Here's the fastest way to get one.
Option 1 — Web Login (Recommended)
- Click Login in the top navigation bar.
- Choose Discord or Google to authenticate.
- After authenticating, you'll be redirected back to the site.
- Click Profile in the top navigation bar to view your API key.
Option 2 — Discord Bot
- Join the Discord server.
- Navigate to the
#keyschannel. - Run the
/account registercommand. - The bot will send your key via private message.
Using Your Key
Pass your key in the x-api-key header on every request:
GET /v2/users/dymerz HTTP/1.1
Host: API_HOST
x-api-key: YOUR_API_KEYdanger
Never expose your API key.
Do not put your key in client-side JavaScript or public repositories. Route API calls through your own backend so the key never reaches the browser.
Managing Your Key
After logging in, click Profile to visit your profile page where you can:
- View and copy your API key
- Check your remaining daily quota
- Renew your key (generates a new one and invalidates the old)
- Delete your account
For details on how the daily quota works and how to check it programmatically, see Rate Limits & Quota.
Next Step
You have a key — now make your first request.