What Is the exp Claim?

The exp (Expiration Time) claim is a Unix timestamp indicating when the token must no longer be accepted.

Example

{ "exp": 1735689600 }

How to Inspect

Paste any JWT into JWT Decoder to see the exp claim in the decoded payload. Use JWT Debugger for validation warnings related to this claim.

Validation Rules

Reject tokens where exp is in the past. Allow small clock skew (30s) server-side.

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.