Back to All Tools

JWT Generator & Verifier

Generate signed JSON Web Tokens with a custom payload and secret key (HS256/384/512). Verify existing tokens and decode their claims — all in your browser.

All signing and verification happens in your browser. Your secret key is never transmitted.

JWT Structure

A JWT consists of three Base64URL-encoded parts separated by dots: Header.Payload.Signature.

Standard Claims

ClaimDescription
issIssuer — who issued the token
subSubject — who the token represents
audAudience — intended recipient
expExpiration — Unix timestamp
iatIssued At — when the token was created
nbfNot Before — token not valid before this time
jtiJWT ID — unique identifier for the token