JWT

Decode and inspect JWT tokens

Loading...

About this tool

Decode JWT (JSON Web Token) tokens to inspect the header and payload without external tools. Paste the token and see the decoded information instantly.

Useful for debugging authentication, checking claims (exp, iss, sub) and understanding a token's contents. Decoding is done in the browser.

How to use

  1. Paste the JWT token into the text area.
  2. See the decoded header and payload.
  3. Copy the parts you need.

Frequently asked questions

Is the JWT validated/signed here?

The tool decodes and shows the contents; signature verification depends on the issuer's secret key.

Is it safe to paste my token?

Decoding happens locally in your browser; even so, avoid sharing production tokens.

What's inside a JWT?

Three parts: header, payload (claims) and signature, separated by dots.

Advertisement