JWT decoding extracts and displays the header and payload from a JSON Web Token. Each JWT has three parts encoded in Base64URL format, separated by dots.
Get the JWT from your application's authorization header, local storage, or cookie.
Paste the complete JWT string (header.payload.signature) into the decoder input.
The tool decodes and displays the header and payload as formatted JSON, including all claims and timestamps.
Check expiration (exp), issuer (iss), audience (aud), and custom claims. Verify timestamps are reasonable.