JWT JTI Claim Explained
What is the JWT jti claim? Learn JWT ID meaning, examples, and validation rules for jti in JSON Web Tokens.
Quick Answer
To JWT JTI Claim Explained, paste your token into our JWT Decoder, inspect the header and payload claims, then verify the signature with the JWT Validator. All processing runs locally in your browser.
What Is the jti Claim?
The jti (JWT ID) claim provides a unique identifier for the token, used for revocation and replay prevention.
Example
{ "jti": "unique-token-id" }
How to Inspect
Paste any JWT into JWT Decoder to see the jti claim in the decoded payload. Use JWT Debugger for validation warnings related to this claim.
Validation Rules
Use with a revocation list to prevent token replay.
Validating the Claim
Always verify JWT claims during token validation. Use our Claims Viewer and Debugger to inspect claim values in real tokens.
Browse related resources: JWT Decoder, JWT Validator, JWT Basics, JWT Authentication, JWT Errors, Algorithms, Glossary, and Learning Path.
Try It Now
FAQ
What does this JWT claim mean?
See this page for a full explanation with JSON examples and validation rules for production APIs.
How do I view this claim in a token?
Paste your JWT into our free JWT Decoder or Claims Viewer to see all payload claims instantly.
Must I validate this claim server-side?
Registered claims like exp, iss, aud, and sub should always be validated during token verification.