🔏 Signature Information
Waiting for token...
Simply paste a JSON Web Token (JWT) into the input field. The tool instantly decodes the header and payload sections, displaying them as formatted JSON. You'll also see the signature part (without verification) and the algorithm used. Use the Copy Header and Copy Payload buttons to copy the decoded JSON, and Clear to reset everything. All processing is done in your browser — no data is sent to any server.
JWT is a compact, URL-safe token format used for securely transmitting information between parties. It consists of three parts: Header, Payload, and Signature, each Base64Url-encoded and separated by dots. JWTs are commonly used for authentication, authorization, and information exchange in web applications and APIs.
This tool does not verify the signature — it only decodes the token. A valid signature does not guarantee the token's authenticity; you must check the signature separately using the appropriate secret or public key. Never share your JWT secrets or private keys. All decoding happens locally, ensuring your tokens remain private.