🔐

JWT Decoder

Decode JWT tokens and check expiration status

JWT Token

About JWT Decoder

What is a JWT?
A JSON Web Token (JWT) is a compact, URL-safe token used for authentication and information exchange between applications.
How do I use this tool?
Paste your JWT token into the input box and click "Decode". The tool will display the header and payload information.
Can I see the signature?
This tool decodes the header and payload. The signature cannot be decoded (it's cryptographically signed). Use jwt.io for signature verification.
Is my token secure here?
Yes. All decoding happens in your browser. Your token is never sent to any server.
How do I know if a token is expired?
The tool automatically checks the expiration date (exp claim) and shows you how long until the token expires.