JWT Token Decoder
Decode JSON Web Tokens to inspect header, payload, and check expiration. No data is sent to any server.
Common JWT Claims
- iss: Issuer
- sub: Subject
- aud: Audience
- exp: Expiration time
- iat: Issued at
Decode and inspect JSON Web Tokens
Decode JSON Web Tokens to inspect header, payload, and check expiration. No data is sent to any server.