This tool does not verify signatures
Decode JWT header and payload, inspect claims, and review the signature segment — without pasting secrets.
Runs 100% in your browser — your input is never uploaded.
This tool does not verify signatures
Free online JWT debugger and decoder. Inspect the JWT header, payload, and signature (Base64URL segments), read exp/iat/nbf claims, and see why signature verification needs your signing key server-side — this tool decodes only and never verifies signatures.
A JSON Web Token (JWT) is an industry-standard compact token format defined by RFC 7519. In the common JWS (JSON Web Signature) form used by most APIs, a token is three Base64URL-encoded segments joined by periods: the JWT header, the JWT payload (claims), and the JWT signature.
This JWT debugger splits the token on those periods, decodes the header and payload segments back to JSON, and shows the signature segment as-is — that's decoding, and it's all that happens here. Typical header fields include alg and typ; the payload often carries claims such as sub, iat, exp, and nbf.
Signature verification is a different operation: it means checking the JWT signature against a secret or public key to confirm the token wasn't tampered with and was issued by who it claims. This tool intentionally does not verify signatures, because doing it safely would require pasting a signing key into a web page — which you should never do here or elsewhere. If you need real JWT verification, do it server-side with a proper JWT library and your actual key.
The exp, iat, and nbf claims are Unix timestamps (seconds since epoch) per RFC 7519 NumericDate, so we convert them to both your local timezone and UTC. Tokens whose header advertises alg: "none" are flagged in red — that algorithm means no signature at all, and some libraries have historically mishandled trusting it.