TextTools.site

JWT Decoder

Decode and inspect JSON Web Tokens. View header, payload, and verify expiration.

About JWT

  • Header: Contains algorithm (alg) and token type (typ)
  • Payload: Contains claims like subject (sub), issued at (iat), expiration (exp)
  • Signature: Verifies the token hasn't been tampered with
  • Security: Never share JWTs containing sensitive data in URLs or logs