What is JWT?
JSON Web Token (JWT) is an open standard (RFC 7519) for securely transmitting information between parties as a JSON object. JWTs are commonly used for authentication and authorization in web applications.
A JWT consists of three parts separated by dots (.):
- Header: Algorithm and token type
- Payload: Claims (user data, expiration, etc.)
- Signature: Verification hash
How to Use
- Paste your JWT token into the input area
- View the decoded header and payload with color-coded sections
- Check expiration status and claims