How to Decode a JWT
This token analyzer makes decoding a JWT a two-step job:
- Paste your token into the input box (or click Load Sample to try one). The decoder splits the token on its dots and reads each part.
- Read the output: the decoded header shows the signing algorithm, the payload shows every claim, and the standard claims panel flags expiration (
exp) so you can tell at a glance whether a token is still valid.
It is a pure decoder: it reveals what is inside a token but does not verify the signature, since that needs the issuer's secret or public key. If you are debugging an OIDC login flow against Keycloak, the access and ID tokens you see here come straight from your identity provider, and our Keycloak documentation covers how those claims are issued and mapped.