JWT Decoder
Decode JSON Web Tokens to inspect the header, payload, and claims. Your tokens stay in your browser — nothing is sent to any server.
About JSON Web Tokens
JWT (JSON Web Token) is a compact, URL-safe token format used for authentication and information exchange. A JWT consists of three parts separated by dots: Header, Payload, and Signature.
Standard Claims
| Claim | Name | Description |
|---|---|---|
iss | Issuer | Who created the token |
sub | Subject | Who the token is about |
aud | Audience | Who the token is intended for |
exp | Expiration | When the token expires |
nbf | Not Before | When the token becomes valid |
iat | Issued At | When the token was created |
jti | JWT ID | Unique identifier for the token |