JWT Generator
Generate JWT tokens online with HS256/HS384/HS512 signing and standard claims, processed locally in the browser.
What is a JWT?
A JWT (JSON Web Token) is an open standard (RFC 7519) for securely transmitting information between parties. It encodes claims as a JSON object and consists of three segments joined by dots (.), commonly used for API authentication and authorization.
JWT structure
Header/Contains the token type (typ) and signing algorithm (alg)Payload/Contains claims such as user identity, permissions, and expiration timeSignature/Generated from the encoded Header and Payload with a secret key, used to verify the content is unmodified
Common Claims
iss/Issuersub/Subjectaud/Audienceexp/Expiration timenbf/Not beforeiat/Issued atjti/Unique identifier (JWT ID)