Decode and inspect JSON Web Tokens instantly — runs entirely in your browser
A JWT (JSON Web Token) is a compact, URL-safe token used to securely transmit information between parties. It consists of three Base64URL-encoded parts separated by dots:
| Claim | Full Name | Description |
|---|---|---|
sub | Subject | The user ID the token refers to |
iss | Issuer | Who issued the token (e.g. your auth server) |
aud | Audience | Who the token is intended for |
exp | Expiration | When the token expires (Unix timestamp) |
iat | Issued At | When the token was created (Unix timestamp) |
nbf | Not Before | Token is not valid before this time |
jti | JWT ID | Unique identifier for this token |
exp claim is a Unix timestamp. If the current time is past that value, the token is expired. Your auth server will reject it. Request a new token by logging in again or using a refresh token.© 2026 dconverter.org. All Rights Reserved.