Inspect claims
- Paste a JWT from a local test environment
Read iss, aud, sub, exp, and role-style custom claims
Decoding is useful for debugging claim shape and expiration timestamps.
Decode JSON Web Token header and payload locally without uploading token values.
Paste a JWT before decoding.
Next tool
Browse local developer utilities and workflows.
Next tool
Send decoded payload structure into the JSON Formatter when you need validation, clean indentation, or an error summary.
-
base64url(header) + '.' + base64url(payload) + '.' + signatureRead iss, aud, sub, exp, and role-style custom claims
Decoding is useful for debugging claim shape and expiration timestamps.
The status panel compares exp with the current browser time
This is a convenience check only; server-side validation still decides access.