What is a JWT?
A JSON Web Token is a compact format for carrying claims between systems. Most signed JWTs are readable without a key.
Decode and inspect JSON Web Tokens directly in your browser.
Your token stays in your browser.
Paste a JWT to inspect it.
Encoded header
Encoded payload
Verification is separate from decoding and runs only in this browser.
Used only in your browser to sign this JWT.
Decoding does not verify a JWT. Anyone can read the header and payload of a normal signed JWT. Signature verification requires the secret or public key used by the issuer. Do not treat decoded contents as trusted until verification succeeds.
A JSON Web Token is a compact format for carrying claims between systems. Most signed JWTs are readable without a key.
It Base64URL-decodes the header and payload so you can inspect their JSON values.
No. Verification checks the signature with the issuer's secret or public key.
This tool processes data locally and does not store it, but production credentials should still be handled carefully.
header.payload.signature: the algorithm metadata, claims, and integrity check.