JWT Decoder

Decode and inspect JSON Web Tokens — header, payload and claims.

Frequently asked questions

Is it safe to paste my token here?

Yes. Decoding happens entirely in your browser; the token is never uploaded or stored.

Does it verify the signature?

It decodes the header and payload for inspection. Signature verification requires the secret/key, which we never ask for.

Related tools