Keep 150+ tools free for everyone, forever.
🙏 Thank You!
Every donation keeps these tools free for millions of users worldwide.

Scan with any UPI app to donate
Google Pay • PhonePe • Paytm • BHIM
Decode and inspect JWT tokens instantly. View header, payload, and signature.
Security notice: This tool does not verify JWT signatures. Never share tokens containing sensitive data.
exp claim is present.iat, exp, and nbf claimsA JSON Web Token (JWT) is a compact, URL-safe token format used to represent claims between two parties. It consists of three base64url-encoded parts: header, payload, and signature, separated by dots.
No. All decoding happens entirely in your browser using JavaScript. Your token never leaves your device.
No. Signature verification requires the secret key or public key used to sign the token. This tool only decodes the header and payload for inspection purposes.
iat (issued at) is when the token was created. exp (expiration) is when it expires. nbf (not before) is the earliest time the token is valid. All are Unix timestamps in seconds.