JWT Decoder
Decode JSON Web Tokens and inspect their payload. View header, claims, and signature instantly.
JWT Token
Decoded JWT
Paste a JWT token to decode
Actions
JWT Structure
Header
Contains token type and signing algorithm
Payload
Contains claims (user data, expiration, etc.)
Signature
Verifies token hasn't been tampered with
Common Claims
- iss: Issuer
- sub: Subject (user ID)
- aud: Audience
- exp: Expiration time
- iat: Issued at
- nbf: Not before
⚠️ Security Note
This tool only decodes JWTs. It does not validate signatures. Never share your JWT tokens or secret keys publicly.
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 information exchange.