JWT Tools

JWT Tools

Decode JSON Web Tokens and inspect the header, payload, and signature claims; encode new tokens; view JWKS; reference standard claims; verify signatures; run security tests.

Paste a JWT on the left to see its decoded contents

JWT Tools

Decode JSON Web Tokens and inspect the header, payload, and signature claims; encode new tokens; view JWKS; reference standard claims; verify signatures; run security tests.

Common uses

  • Decode a JWT from an Authorization header
  • Build and sign a new HS256 token
  • Check if a token has expired

Frequently asked questions

How do I decode a JWT?

Paste the token and the header, payload, and signature are decoded and displayed instantly. Registered claims are explained inline against RFC 7519 and OpenID Connect.

Can I verify a JWT signature?

Yes. Provide the secret (HMAC) or public key / JWKS (RSA/EC) and the tool reports whether the signature is valid.

Are my tokens sent anywhere?

No. Decoding and verification run locally in your browser; tokens never leave your machine.

Is my data uploaded to a server?

No. This tool runs entirely in your browser — your input is processed locally on your device and is never uploaded or stored on a server.

Related tools