JWT Debugger

The JWT Debugger decodes a JSON Web Token into its header, payload and signature parts so you can inspect claims, expiry and algorithm. It helps you debug auth flows without sending tokens to a server.

Contents

Key Features

Use Cases

How to Use

  1. Paste the JWT string
  2. Read the decoded header and payload
  3. Check exp and other claims
  4. Optionally paste a secret or key to verify the signature
  5. Note whether the token is expired

Practical Tips

FAQ

Is it safe to paste a token here?
The tool runs in your browser and does not upload the token, but avoid pasting secrets you do not control.
Does it verify the signature?
Yes, if you provide the correct secret or public key; otherwise it only decodes.
← Back to Guides