Decoding scope
Paste a JSON Web Token to instantly decode its header and payload, and view the raw signature segment. The debugger parses the structure locally but does not cryptographically verify the signature against a secret.
Recognized claims
Common standard claims—such as iss (Issuer), sub (Subject), aud (Audience), and scope—are extracted into a dedicated table. This makes it easier to scan the token’s permissions and origin without reading raw JSON.
Expiration & lifecycle
When a token includes an exp (Expiration) claim, the debugger displays a live lifecycle banner indicating whether the token is active or expired, along with the remaining or elapsed time.
Human-readable dates
By default, JWT timestamps like iat, nbf, and exp are stored as raw Unix seconds. The Human Dates toggle converts these values into readable local timestamps to simplify timezone debugging.