How to Decode JWT Tokens
JSON Web Tokens (JWTs) are a compact, URL-safe means of representing claims between two parties. This guide explains how to decode and understand JWT tokens.
What is a JWT?
A JWT consists of three parts separated by dots (.):
- Header: Contains the token type and signing algorithm
- Payload: Contains the claims (data)
- Signature: Ensures the token hasn't been tampered with
How to Decode
- Copy your JWT token
- Use our JWT Decoder tool
- Paste the token and click "Decode JWT"
- View the decoded header and payload
Understanding the Payload
Common JWT claims include:
iss(issuer): Who created the tokensub(subject): Who the token is aboutexp(expiration): When the token expiresiat(issued at): When the token was created
Security Note
Decoding a JWT does NOT verify its signature. Always verify JWTs on the server side before trusting their contents.
Try it now:
Open JWT Decoder Tool →