JWT Decoder
Decode and inspect JSON Web Tokens. View the header and payload claims without needing the secret key.
About JWTs
A JSON Web Token (JWT) consists of three Base64URL-encoded parts separated by dots:
- Header — algorithm and token type
- Payload — claims (data)
- Signature — used to verify the token was not tampered with
Common claims
sub | Subject (user ID) |
iss | Issuer |
aud | Audience |
exp | Expiration (Unix timestamp) |
iat | Issued at (Unix timestamp) |
Never paste production tokens with sensitive data into online tools. This tool runs entirely server-side and does not store tokens.