Decode and inspect JSON Web Tokens (JWT) without verification.
JWT Structure: header.payload.signature
Header: Token type and signing algorithm
Payload: Claims (user data, expiration, etc.)
Signature: Cryptographic verification (not validated here)
⚠️ Security: This tool only DECODES tokens. It does not verify signatures. Never trust decoded data without proper verification.