JWT Debugger
Decode JSON Web Tokens instantly to inspect header and payload claims. All processing happens locally.
Token Parts
Header
Payload
Registered Claims
| Claim | Value | Meaning |
|---|
Signature
The signature cannot be verified without the secret key. This tool only decodes the token structure.
About the JWT Debugger
A JSON Web Token (JWT) is a compact, URL-safe token used for authentication and information exchange. It has three parts — header, payload, and signature — separated by dots.
This debugger decodes a JWT so you can read its claims (like user id, roles, and expiry) without running any code. Decoding happens entirely in your browser, so your tokens stay private.
How to use the JWT Debugger
-
1
Paste your JWT
Paste the full token (three dot-separated segments) into the input.
-
2
Read the header
See the signing algorithm and token type.
-
3
Inspect the payload
View all claims, including subject, issued-at, and expiry times in human-readable form.