Loading tool, please wait…
The JWT payload contains statements about an entity (typically the user) and additional metadata. RFC 7519 establishes seven registered claim names to promote interoperability.
| Claim | Full Name | Description & Usage |
|---|---|---|
| iss | Issuer | Identifies the principal that issued the JWT (e.g. "https://auth.example.com") |
| sub | Subject | Identifies the principal subject of the token (e.g. user UUID) |
| aud | Audience | Identifies the recipients the JWT is intended for (e.g. "api.example.com") |
| exp | Expiration | Unix epoch timestamp (seconds) on or after which the token is invalid |
| nbf | Not Before | Unix epoch timestamp (seconds) before which the token is invalid |
| iat | Issued At | Unix epoch timestamp (seconds) when the token was created |
| jti | JWT ID | Unique identifier for the JWT, used to prevent token replay attacks |
Inspect registered and custom payload claims in JWT Decoder.
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhdXRoLmNvb2x0b29scy5kZXYiLCJzdWIiOiJ1c2VyXzk4NzYiLCJhdWQiOiJhcGkuY29vbHRvb2xzLmRldiIsImV4cCI6MTc4ODEzNDQwMCwiaWF0IjoxNzU2NTM5NjAwLCJqdGkiOiJjN2Q5MDdlIn0.abc