About JWT (JSON Web Tokens)
JSON Web Tokens (JWT) are an open standard (RFC 7519) for securely transmitting information between parties as a JSON object. A JWT consists of three parts separated by dots: Header, Payload, and Signature. This tool decodes the header and payload without verifying the signature. Your tokens are processed entirely in your browser and never sent to any server.