Inspect any JSON Web Token's header, payload, and signature. Fully client-side — the token never leaves your browser.
100% client-side.Your token is decoded in your browser only — it's never sent to a server, logged, or stored.
{
"alg": "HS256",
"typ": "JWT"
}{
"sub": "1234567890",
"name": "Ada Lovelace",
"iat": 1716000000,
"exp": 2035000000,
"role": "admin"
}subSubject — typically the user IDiatMay 18, 2024, 02:40:00 AM · in 19861 dexpJun 27, 2034, 05:46:40 AM · in 23553 droleRole assigned to subjectSignature verification requires the issuer's secret or public key, so it's not done here. Use your backend or a library like jose to verify.
A short PDF covering the OWASP JWT pitfalls — none/alg confusion, weak secrets, missing aud checks, and more.
No spam. Unsubscribe anytime.
Discover more utility-driven tools designed to enhance your workflow and technical excellence.