JWT Decoder

Decode and inspect JSON Web Tokens. This tool only decodes - it does not validate signatures.

JWT Token

About JWT

JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties.

Header

Algorithm & token type (e.g., HS256, JWT)

Payload

Claims data (sub, exp, iat, custom fields)

Signature

Cryptographic verification of token integrity