🔑 JWT Decoder
Paste a JWT token to decode and inspect the header, payload, and signature.
Header — JOSE header
Header
🔍 Raw JSON
Payload — claims
Payload
🔍 Raw JSON
Signature
⚠️ Signature not verified — verification requires the secret or public key.
📖 Standard claim names
| Claim | Full name | Description |
|---|---|---|
| iss | Issuer | Who issued the token |
| sub | Subject | The entity the token is about |
| aud | Audience | Intended recipients |
| exp | Expiration Time | Token must not be accepted after this Unix timestamp |
| nbf | Not Before | Token must not be accepted before this Unix timestamp |
| iat | Issued At | When the token was issued (Unix timestamp) |
| jti | JWT ID | Unique identifier — used for replay prevention |