JWT Decoder
Decode, inspect, and generate JSON Web Tokens client-side
Common JWT Claims
issIssuer - identifies the token issuersubSubject - identifies the user/principalaudAudience - intended recipientsexpExpiration - timestamp when token expiresiatIssued At - timestamp when token was creatednbfNot Before - token is not valid before this timeFrequently Asked Questions
What is a JWT?
JWT (JSON Web Token) is a compact, URL-safe means of representing claims between parties.
Is decoding a JWT safe?
Decoding only reads the content. JWTs are encoded, not encrypted, so anyone can decode them.
jwtjson web tokendecodeencodetokenauth
