Debug authentication
Decode tokens to check common claims such as subject, issuer, audience, issued-at time, and expiration time.
Authentication tool
Decode JSON Web Token headers and payloads while debugging login flows, API requests, and authorization claims.
Use cases
Decode tokens to check common claims such as subject, issuer, audience, issued-at time, and expiration time.
Inspect the algorithm and token type from the header before verifying the token in your backend or identity provider.
Do not treat decoded claims as trusted data. Anyone can edit an unsigned payload, so verification is required before authorization.
FAQ
No. Decoding only reads the token. Verification checks whether the token was signed by a trusted issuer.
Yes. Expiration affects whether a token should be accepted, not whether its payload can be read.
The tool expects a token with at least header and payload sections separated by dots.