JWT Decoder
Decode JWT tokens to inspect header and payload claims.
- On your device
- No signup
Private on your device
Your information stays on your device and is not uploaded.
Decode JWT tokens to inspect header and payload claims.
Encode and sign JWTs with HS256 on your device.
Generate sample JWTs with common claims.
Format, minify, and validate JSON with optional key sorting.
Compare two JSON documents and list structural differences.
Format, minify, and validate XML with readable indentation.
Compare two XML documents and list structural differences.
Encode and decode text with Base64.
A JWT decoder reads the header and payload of a JSON Web Token without verifying signatures. Useful for debugging auth tokens locally—never paste production secrets into untrusted sites.
This JWT payload decoder parses the middle segment of JSON Web Tokens into readable JSON claims. Inspect `sub`, `exp`, roles, and custom fields when debugging OAuth flows—decode only; signature verification happens elsewhere.
The payload is Base64URL-encoded JSON—anyone with the token can read it. Do not store secrets in JWT payloads.
Decoding does not prove the token is authentic—verify signatures with your issuer keys in production.
Paste the full JWT, view the decoded payload JSON, and compare claim values against your authorization rules.
Example: decode an access token payload to confirm `exp` is in the past when tracing a 401 response from your API gateway.
Paste a JWT (optionally with a Bearer prefix). The tool splits header, payload, and signature, Base64URL-decodes the first two segments, and pretty-prints them as JSON. Common time claims (iat, nbf, exp) are shown as timestamps. Signatures are displayed but not verified.
Decoding a JWT does not verify its signature or prove the token is valid, trusted, or unexpired. Do not paste production secrets into untrusted tools.
Your data stays on your device and is not uploaded.
These pages use the same jwt decoder with guides tailored to specific search intents.
FAQ
No. It only decodes the payload segment for inspection.
Ensure you pasted a complete three-part JWT, not just the header or signature.
Standard decode works on your device.
Page last reviewed: