๐ŸŽซ

JWT Decoder

Decode a JSON Web Token and read its header, payload and expiry.

Advertisement
Ad slot: top
Decoding is not verification. Anyone can read a JWT โ€” the signature is what proves it is genuine, and checking it needs the secret or public key, which must stay on your server. Never paste a production token you still rely on into any website, including this one.
Advertisement
Ad slot: incontent

About the JWT Decoder

Paste a token and see the header, the payload and every claim laid out in a readable table, with timestamps converted to real dates and a clear warning when the token has expired.

Decoding happens entirely in your browser. That still does not make it safe to paste a live production token into any website โ€” including this one โ€” because a valid token is a working credential until it expires.

Frequently asked questions

Does this verify the signature?

No. Verification needs the secret or public key, which must stay on your server. This tool only decodes what the token says.

Is a JWT encrypted?

No. The payload is Base64-encoded, not encrypted โ€” anyone holding the token can read it. Never put passwords or secrets in a JWT.

Related tools

All Developer โ†’
Advertisement
Ad slot: bottom