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 inspect JWT token tool breaks JSON Web Tokens into header and payload JSON for quick auth debugging. Paste a bearer token from Postman, browser storage, or logs to read algorithms, expiry, and issuer claims without leaving your browser.
Inspection is for debugging—never treat decoded tokens as proof of identity without cryptographic verification.
Rotate tokens if you accidentally expose production JWTs in tickets or screen shares.
Paste the JWT string, review decoded header and payload panels, and note `alg`, `exp`, and custom claims.
Example: inspect a staging access token to confirm `iss` matches your Auth0 tenant before updating API middleware.
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
Yes if they are JWT-formatted. Opaque refresh tokens will not decode.
JWT `exp` is a Unix timestamp in UTC seconds since epoch.
No. The tool reads and decodes only—it does not sign or alter tokens.
Page last reviewed: