Decode the header, payload, and signature of any JSON Web Token. Auto-detects expiry. No secret key needed to decode.
JWT (JSON Web Token) tokens consist of three Base64URL-encoded parts separated by dots: header.payload.signature.
{"alg":"HS256","typ":"JWT"} specifying the signing algorithm and token type.iss (issuer), sub (subject), aud (audience), exp (expiration), iat (issued at).Security note: Never paste production JWT tokens into online tools if they contain sensitive data. This decoder runs entirely in your browser —your token is never transmitted.