Discord Token Decoder
Reveal the non-secret parts of a Discord bot or user token — the account ID and the moment it was issued — without sending anything anywhere.
Treat this token as a password
A real token grants full control of the account or bot. Decoding happens entirely in your browser — nothing is uploaded — but you should still never share a live token, paste it into untrusted sites, or commit it to code. If a token has been exposed, regenerate it immediately.
Token
Decoded
Waiting for a token…——How it works
A Discord token is three URL-safe base64 sections joined by dots: base64(account ID) . base64(creation offset) . HMAC signature. The first section decodes straight to the snowflake ID. The second decodes to a number; Discord stored it as seconds since its own epoch (2010-12-31), so values below that epoch get it added back to form a Unix timestamp. The third section is the secret signature and is never decoded here.