🔑

JWT Decoder

Decode and inspect JSON Web Tokens

About JWT

  • • JWT consists of three parts: Header, Payload, and Signature
  • • This tool only decodes the token - it doesn't verify the signature
  • • Never share JWT tokens containing sensitive information
  • • Common claims: iss (issuer), sub (subject), aud (audience), exp (expiration)