Usage Guide
A JWT has three parts: header, payload, and signature. It is commonly used for sessions, API authorization, and signed claims between services. Paste a token on the left and decode it to inspect the algorithm, type, subject, expiration, issued-at time, roles, and scopes. To create a test token, edit the header and payload JSON, provide an HMAC SHA-256 secret, and sign it locally. During debugging, pay close attention to exp, nbf, and iat units and timezones, and confirm that frontend, gateway, and backend services expect the same key and algorithm.