Decode, inspect, and encode JWT tokens — 100% in your browser. Your tokens never leave your device.
How to Use
exp and iat claims and shows human-readable dates.Features
Use Cases
API Debugging
Quickly inspect the claims in a JWT returned from an authentication API to verify user ID, roles, and permissions are correctly set.
Token Expiry Troubleshooting
When users report 401 errors, paste the token to instantly see if it has expired, when it was issued, and when it stops being valid.
Security Auditing
Verify that JWTs use strong algorithms (RS256, ES256) rather than weak ones (none, HS256 with short keys) and that payloads don't contain sensitive data.
Learning & Prototyping
Learn how JWT structure works by creating tokens with different payloads and algorithms. Perfect for teaching JWT concepts in workshops.
OAuth 2.0 / OIDC Testing
Inspect ID tokens and access tokens from OAuth 2.0 and OpenID Connect flows to verify claims like sub, iss, aud, and scope.