The JWT decoder reads the Header, Payload, and the iat, nbf, and exp time claims. Tokens are processed only in your browser.
Examples and limits
eyJhbGciOiJub25lIn0.eyJzdWIiOiI0MiJ9. can be decoded to inspect its header and payload; the three-part structure is parsed but the signature is not verified. Tokens may contain sensitive data, so avoid pasting production tokens. Processing is local to the browser.
How to use
Paste a JWT and run the decoder to inspect its structure and time claims. URL sharing is disabled for this tool so token content does not enter a link; use a local snapshot only when you can protect the file.
Security boundary
This tool does not verify JWT signatures. A successful decode only confirms that the token content is readable; it does not establish the issuer, authenticity, or permissions. Authentication and authorization must be validated by a trusted server with approved algorithms and keys.
Time claims
iatrecords when the token was issued.nbfindicates when the token becomes active.expindicates when the token expires.