For debugging only. Never trust a token based on decoding alone—always verify signatures and issuer on your server.
—
—
—
For debugging only. Never trust a token based on decoding alone—always verify signatures and issuer on your server.
—
—
—
JWTs are three Base64url-encoded pieces: header, payload, and signature. This page decodes the first two into JSON so you can read standard claims like expiration (exp) or audience (aud). It does not validate cryptographic signatures.
Tokens are processed entirely in your browser.
No—it only decodes Base64url segments so you can inspect claims. Use your identity provider or server libraries to verify.
No—all decoding happens locally.
Avoid sharing live secrets on shared machines; treat decoded tokens like passwords.
This page targets standard signed JWT (three segments separated by dots).