How to use this JWT Decoder
Paste a JWT token into the input area and click Decode JWT. The tool will
split the token into its three segments, decode the header and payload from Base64URL, and
show them as formatted JSON when possible.
- Paste the JWT token into the input field.
- Click Decode JWT.
- Review the decoded header and payload.
- Copy the payload if needed for debugging or inspection.
What this tool shows
JWT tokens usually contain three sections separated by dots:
header.payload.signature
This tool decodes the first two parts into readable JSON and shows the third part as the
signature segment for reference.
What is a JWT decoder?
A JWT decoder is a tool that reads the encoded header and payload sections of a JSON Web
Token and converts them into readable JSON. This helps developers inspect claims and token
metadata without having to manually decode Base64URL data.
It is useful for understanding token contents during authentication testing, API
integration, identity workflows, and debugging.
Common JWT claims you may inspect
When decoding a JWT, you may want to inspect claims such as:
- sub: subject or user identifier
- iss: token issuer
- aud: intended audience
- exp: expiration timestamp
- iat: issued-at timestamp
- nbf: not-before timestamp
- scope or custom claims used by your application
Frequently Asked Questions
Does this verify JWT signatures?
No. It only decodes the token parts for inspection. It does not verify the signature or
confirm that the token is trusted.
Can I inspect exp and iat claims?
Yes. Any decoded claims in the payload will appear in formatted JSON, including fields
like exp, iat, and other standard or custom claims.
What happens if the token format is invalid?
The tool will show an error if the JWT does not contain the expected structure or if
the header and payload cannot be decoded properly.
Is this JWT decoder free?
Yes. This tool is free to use online and works directly in the browser.
Does this tool upload my token?
No. This page is designed to decode the token in the browser during normal use.