Break a token down claim by claim, with iat/exp/nbf decoded into real dates and an expiry verdict.
Ctrl + Enter to run
Breaks a token into its parts and renders the claims as readable fields, with the registered ones — `exp`, `iat`, `nbf`, `iss`, `aud`, `sub` — resolved into dates and labelled rather than left as raw epoch numbers.
That is usually what you want when debugging an auth failure, because the answer is very often simply that `exp` has passed or `aud` does not match what the API expects. Everything runs in your browser, so a live token is not transmitted anywhere.