Decode JWT tokens and view header and payload. All processing happens in your browser.
A JWT (JSON Web Token) decoder lets you inspect the contents of a JWT without running code. JWTs are used for authentication—they contain a header, payload (claims like user ID, expiration), and signature. Paste a JWT to see the decoded header and payload, check expiration (exp), issued-at (iat), and other claims.
Debug auth issues, verify token contents, check expiration before it fails, inspect claims from OAuth/OpenID, or learn how JWTs work. Note: this only decodes—it does not verify the signature. Never paste production secrets. All decoding happens in your browser.