JWT Decoder
Decode and inspect JSON Web Tokens
Your token is decoded locally in your browser. It is never sent to any server.
What is JWT?
JSON Web Token (JWT) is an open standard (RFC 7519) for securely transmitting information between parties as a JSON object. JWTs are commonly used for authentication and authorization.
A JWT consists of three parts separated by dots: Header.Payload.Signature
Common Claims
iss (Issuer) - Who issued the token
sub (Subject) - Who the token is about
aud (Audience) - Who the token is intended for
exp (Expiration) - When the token expires
iat (Issued At) - When the token was issued
nbf (Not Before) - When the token becomes valid