JWT Decoder

Decode and inspect JSON Web Tokens — your token never leaves your browser.

JWT Token

Header

Payload

Claims

How to Use JWT Decoder

① Paste your JWT token ② View decoded header and payload ③ Check expiration and claims ④ Copy decoded data

About JWT Decoder

JWT Decoder is a free online tool that decodes and inspects JSON Web Tokens (JWTs) instantly. Paste any JWT and see the decoded header, payload, claims, expiration time, and signature information in a clear, formatted view. JWTs are the standard authentication mechanism for modern web applications and APIs. They consist of three Base64-encoded parts: header (algorithm and token type), payload (claims and user data), and signature (verification). This tool decodes the first two parts and displays them in a readable format. Understanding the contents of a JWT is essential for debugging authentication issues, verifying token claims, checking expiration times, and auditing access tokens. This tool makes JWT inspection fast and visual without needing command-line tools. Everything runs entirely in your browser. Your tokens are never sent to any server — this is critical for JWTs which often contain sensitive user data, permissions, and session information. There are no usage limits and no account required. Common use cases include debugging OAuth flows, verifying API authentication tokens, checking token expiration before deployment, auditing access permissions in JWT claims, and understanding third-party authentication integrations.

Frequently Asked Questions

Does it verify the JWT signature?
It decodes and displays the signature but cannot verify it without the secret key or public key.
Is my JWT sent to a server?
No. Decoding happens entirely in your browser. Your token never leaves your device.
Does it show token expiration?
Yes. It displays the exp (expiration), iat (issued at), and nbf (not before) claims with human-readable dates.
Which JWT algorithms are supported?
It decodes JWTs regardless of the signing algorithm (HS256, RS256, ES256, etc.).
Share Aether Tool
Help us grow!