Online JWT Decoder

Decode and verify your JSON Web Tokens.

Encoded Token

Token never leaves your browser.

Header

Algorithm & Token Type

                

Payload

Data

                

Signature

Verify Signature (Raw)

About JWT

JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature structure or as the plaintext of a JSON Web Encryption structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code and/or encrypted.

Is This Tool Safe?

Yes, 100% safe. This tool works Client-Side. Tokens you enter are not sent to our servers; they are decoded using JavaScript in your browser. You can safely test your private data.

JWT Structure

A JWT typically looks like `xxxxx.yyyyy.zzzzz` and consists of three parts:

  • Header: Typically consists of two parts: the type of the token, which is JWT, and the signing algorithm being used, such as HMAC SHA256 or RSA.
  • Payload: The second part of the token is the payload, which contains the claims. Claims are statements about an entity (typically, the user) and additional data.
  • Signature: To create the signature part you have to take the encoded header, the encoded payload, a secret, the algorithm specified in the header, and sign that.

Frequently Asked Questions

What is JWT?

JWT (JSON Web Token) is a standard for securely transmitting information between parties as a JSON object.

Is a key required to decode?

No, the Header and Payload parts of a JWT are Base64 encoded and can be read without a key. The key is only needed to verify the signature.

Are encoded tokens saved?

No, the decoding process is done entirely in your browser. Your tokens are not sent to our servers.

Tools (Other)

Cookie Preferences

We use cookies and LocalStorage technologies to provide you with a better experience, analyze site traffic, and remember your legal consents (QR file uploads, etc.).

Detailed Information