JWT Decoder

Decode and inspect JSON Web Tokens (JWT). View header, payload, and claims instantly in your browser.

Understanding JWTs

Header

Contains metadata about the token type and signing algorithm (e.g., HS256, RS256).

Payload

Contains claims - statements about the user and additional metadata like expiration time.

Signature

Cryptographic signature to verify the token has not been tampered with.