Logo
U
User
user@example.com

JWT Decoder

Decode and inspect JSON Web Tokens

⚠️ Never decode sensitive tokens on public servers. This tool runs entirely in your browser.

🔐

Paste a JWT token to decode it

About JWT

JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object.

A JWT consists of three parts:

  • Header: Contains the token type and signing algorithm
  • Payload: Contains the claims (user data and metadata)
  • Signature: Used to verify the token hasn't been tampered with