Decode JSON Web Tokens instantly to view their header, payload, and signature.
JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. This information can be verified and trusted because it is digitally signed.
A JWT consists of three parts separated by dots (.):
| Claim | Name | Description |
|---|---|---|
iss | Issuer | Identifies the principal that issued the JWT. |
sub | Subject | Identifies the principal that is the subject of the JWT. |
aud | Audience | Identifies the recipients that the JWT is intended for. |
exp | Expiration Time | Identifies the expiration time on or after which the JWT must not be accepted. |
iat | Issued At | Identifies the time at which the JWT was issued. |