JWT (JSON Web Token) is a compact, URL-safe means of representing claims to be transferred between two parties. This tool allows you to decode JWT tokens to inspect their header and payload data, and verify their signatures.
Key features:
JWT structure:
Header
- Contains the token type and signing algorithmPayload
- Contains the claims or assertionsSignature
- Verifies the token hasn't been tampered withThis tool performs all operations in your browser - no data is sent to any server.