JWT Decoder

Inspect JWT header, payload, and claims

What is a JSON Web Token?

A JWT is three Base64-encoded chunks separated by dots: header, payload, and signature. The payload carries claims like user ID, roles, and expiry. This tool decodes the first two parts but doesn't verify the signature.