A private JWT, SAML & OIDC token decoder
TokenDecoder is a free, browser-based inspector for the three token formats that show up in modern single sign-on: JSON Web Tokens (JWT), SAML responses, and OpenID Connect (OIDC) access and ID tokens. Unlike tools that POST your token to a backend, every step here — Base64url decoding, claim parsing, expiry checks, and even cryptographic signature verification — runs locally in your browser using native JavaScript and the Web Crypto API. Your token is never sent anywhere.
Decode a JWT and read its claims
Paste a JWT and TokenDecoder splits it into header, payload, and signature, decodes each Base64url segment, and renders the claims as a readable table. Standard registered claims (iss, sub, aud, exp, nbf, iat, jti) are annotated in plain English, and epoch timestamps are converted to human-readable UTC so you can immediately see when a token was issued and when it expires.
Verify the signature against the issuer's JWKS
For asymmetric algorithms (RS256/384/512, ES256/384), TokenDecoder derives the JWKS endpoint from the iss claim's OpenID configuration, fetches the matching public key by kid, and verifies the signature in-browser. Only the public key is retrieved — the token itself stays local. HMAC tokens (HS256) can't be verified without the shared secret, and a token using alg: none is flagged as a critical risk and never "verified".
Inspect SAML responses and OIDC tokens
Switch to the SAML tab to decode a Base64 (or DEFLATE-compressed) SAML response and pull out the issuer, status, subject NameID, conditions window, audience restriction, authentication context, and every attribute statement. OIDC tokens are decoded as JWTs but annotated with OIDC-specific claims (nonce, at_hash, auth_time, acr, amr, azp) and summarized in a dedicated card showing identity, scopes, validity, and whether MFA was used.