JWT Decoder
Decode JSON Web Tokens to inspect header, payload, and expiration without verification.
Paste a JWT and the decoder instantly shows you the header (with the alg and typ fields), the full payload of claims, and the raw signature segment. It converts Unix timestamps such as exp, iat, and nbf into readable dates so you can see at a glance whether a token is expired. Note that decoding is not the same as verifying — this tool reads what the token says but does not check the signature against a secret.