When to use it
- Use it to inspect token headers and payloads quickly.
- It is useful when checking exp, iat, sub, aud, and similar claims.
- It helps during authentication debugging.
No. Decoding only reads the token, while verification checks the signature.
No. This tool shows the signature as raw text only.
{
"header": {
"alg": "HS256",
"typ": "JWT"
},
"payload": {
"sub": "1234567890",
"name": "Devmint",
"iat": 1516239022
},
"signature": "signature"
}Decoded header and payload are shown below.