Skip to main content

JWT Decoder

Decode and inspect JSON Web Tokens — header, payload, and expiry at a glance. Runs in your browser — nothing is sent to a server.

Specifications

Accepts
Text — type or paste
Gives you
copy to clipboard
Where it runs
Your browser — the file is never uploaded
Sign-up
None
Cost
Free, with no usage limits

About JWT Tokens

  • A JWT consists of three Base64URL-encoded parts: Header, Payload, and Signature, separated by dots.
  • The header declares the token type and signing algorithm (e.g. HS256, RS256).
  • The payload contains claims — registered (sub, iat, exp, nbf) and custom ones.
  • The signature verifies the token's integrity — validation requires the secret key on your server.
  • This tool decodes entirely in your browser. No token data is sent anywhere.

Related guide

What Is a JWT and How to Decode One Background reading on this page's topic