Parse, verify JSON Web Token and view detailed information
Enter a JWT Token to start parsing
Consists of three parts, separated by dots (.):
header.payload.signature
JSON Web Token (JWT) is an open standard (RFC 7519) for securely transmitting information between parties as a JSON object.
Consists of three parts:
Header
Payload
Signature
| iss | Issuer |
| sub | Subject |
| aud | Audience |
| exp | Expiration time |
| nbf | Effective time |
| iat | Issued time |
| jti | Unique ID |