Decode, inspect, and validate JSON Web Tokens (JWT) client-side in seconds.
Paste your JWT to instantly decode its Header and Payload parts. Verify key claims such as Expiration (exp) and Not Before (nbf), and securely test HS256 signature verification client-side.
JSON Web Tokens typically store claims in the payload segment:
iss (Issuer): Identifies who created and issued the token.sub (Subject): Identifies the user or subject of the token.aud (Audience): Specifies the intended recipient of the token.exp (Expiration Time): The Unix timestamp after which the token is invalid.nbf (Not Before Time): The Unix timestamp before which the token must not be accepted.iat (Issued At Time): The Unix timestamp when the token was created.