What is a JWT Decoder?
A JWT Decoder reads the Base64URL-encoded header and payload in a JSON Web Token and displays their JSON content. It helps you inspect claims such as the issuer, audience, subject, and expiration time.
Decode JWT headers and claims locally in your browser; signature verification is not included.
How it worksInspect authentication tokens while debugging sign-in flows, check API token claims, confirm expiration times, and review custom authorization data such as roles, scopes, or permissions.
A JWT Decoder reads the Base64URL-encoded header and payload in a JSON Web Token and displays their JSON content. It helps you inspect claims such as the issuer, audience, subject, and expiration time.
No. Decoding only makes the header and payload readable. A token must also have its signature verified with the correct key and expected issuer, audience, and expiration rules before it can be trusted.
Yes. You can paste either a compact JWT or a value beginning with Bearer. DevKit removes the Bearer prefix before decoding the token.
No. JWT decoding happens locally in your browser. DevKit does not upload or store the token you inspect with this tool.
exp is the token expiration time, iat is the time it was issued, and nbf is the time before which it should not be accepted. These registered claims use Unix timestamps when present.