How it works
JSON Web Tokens (JWT) are the standard format for transmitting authentication and authorization data in modern web applications. They are used in OAuth 2.0, OpenID Connect, and API authentication.
A JWT contains three Base64-encoded parts separated by dots: the header (algorithm), the payload (claims), and the signature. This tool decodes the first two parts so you can inspect the token contents.
Quick & easy