JWT Decoder
Decode and validate JSON Web Tokens
jwtjsonwebtokendecodevalidateauthauthentication
JWT Token Input
About JWT
JSON Web Token (JWT) is an open standard (RFC 7519) for securely transmitting information between parties as a JSON object. JWTs consist of three parts: Header, Payload, and Signature.
Common Claims
issIssuer of the tokensubSubject of the tokenaudAudience of the tokenexpExpiration timenbfNot valid beforeiatIssued at timejtiJWT IDCommon Algorithms
HS256HMAC with SHA-256HS384HMAC with SHA-384HS512HMAC with SHA-512RS256RSA with SHA-256ES256ECDSA with SHA-256noneNo signature (insecure)