—
—
—
JSON Web Token'ları tarayıcınızda güvenle çözün.
—
—
—
This free JWT decoder splits a JSON Web Token into its header, payload and signature and decodes the claims in your browser, so you can inspect — or even verify — tokens without sending them to any server.
Paste the JWT and it instantly decodes the header and payload and shows each claim. Because decoding happens locally in your browser, the token — including production secrets — never leaves your device.
Paste your JWT into the input. The decoder immediately shows the header and payload and analyses each claim, marking the token expired or not-yet-valid where relevant. To check integrity, enter the HMAC secret and verify the signature — all without a single network request.
Yes. Decoding and verification run entirely in your browser, so the token and any secret you enter are never transmitted or stored.
Yes, for HMAC algorithms (HS256/384/512) — enter the shared secret and the tool confirms whether the signature is valid.
The decoder compares the token's exp claim to the current time; a past exp means the token is no longer valid.
Toolbox decodes tokens per the JWT standard (RFC 7519) and uses the browser's Web Crypto API for signature checks, so results match how your authentication server validates the same token.