Search for a command to run...
Decode JSON Web Tokens (JWT) locally.
What
A JWT (JSON Web Token) is a compact token with header, payload, and signature; this tool decodes the token contents.
Cases
Inspect claims like issuer or expiration
Debug auth issues by reading payloads
Check token structure before validation
How To
A step-by-step guide to inspecting the header, payload, and signature of a JWT.
Paste the JWT string into the input field.
The header and payload are decoded and displayed as JSON.
Check payload claims like exp, iat, and sub.
Knowledge
FAQ