What is a JSON Web Token (JWT)?
A JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object.
A JWT consists of three parts separated by dots (.): Header, Payload, and Signature. The Header and Payload are Base64URL encoded.
How our JWT Decoder Works
Our tool takes your JWT, splits it by the dots, and decodes the Base64URL payloads for the Header and Payload sections, displaying them as formatted JSON.
Because this decoding happens 100% locally in your browser, it is perfectly safe to decode tokens containing sensitive information. We never transmit your tokens over the network.