Decodificador JWT

Decode and inspect JSON Web Tokens · header, payload, claims and expiration.

Header


      

Payload


      

Signature


      

About JWTs

JSON Web Tokens (JWTs) are a compact way to represent claims between two parties. They consist of three parts: a header (algorithm and type), a payload (claims like issuer, expiration, subject), and a signature. This tool decodes the header and payload but does not verify signatures · for that, you need the signing secret or public key. All decoding happens in your browser; your token is never sent anywhere.

Related Tools