JWT Decoder

Before you paste a live token Decoding happens entirely in your browser and nothing is transmitted — but a token you have pasted into any web page should be treated as exposed. Use an expired or test token where you can.
Paste a token above.

What a JWT actually is

Three Base64 chunks joined by dots: a header saying how it was signed, a payload of claims, and a signature over the first two. The signature stops anyone changing the contents. It does nothing to stop them reading the contents — which is the point most people miss.

What not to put in one

  • Passwords, card numbers, anything you would not print on a postcard.
  • More personal data than the receiving service actually needs.
  • Anything you would be unhappy to see in a browser history or a log file.

Why this page will not verify for you

Verification needs the signing key. Any page offering to check a signature is asking you to paste that key into someone else's website — and a leaked signing key lets an attacker mint tokens for any user. Verify on your server.

Share this tool with friends

Free to use, no sign-up, works on any phone.

Frequently Asked Questions

Is a JWT encrypted?

No, and this is the thing people get wrong most often. The header and payload are only Base64-encoded, which anyone can reverse — including this page. Never put a password, a card number or anything private in a token.

Does this verify the signature?

No, deliberately. Verifying needs the secret or public key, and pasting a signing secret into a web page is exactly the habit that gets systems breached. Verify on your server, where the key lives.

What do the standard claims mean?

exp is when it expires, iat when it was issued, nbf the earliest it may be used, iss who issued it, sub who it is about and aud who it is for. All the times are Unix seconds, which this page converts for you.

My token looks valid but the server rejects it. Why?

Usually expiry or a clock difference of a few seconds between machines. Check exp against the real time here, and remember nbf can also make a token too early rather than too late.

Is my token sent anywhere?

No. It is split and decoded in your browser and never transmitted. Even so, treat any token you paste anywhere as compromised and rotate it if it is a live one.

Everything on this page runs inside your own browser. Nothing you type or upload is sent to a server, so your data never leaves your device.