JWT Decoder
Decode and inspect JSON Web Tokens (JWT) to view header, payload, and signature information.
About JWT
JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object.
Structure of a JWT
A JWT consists of three parts separated by dots (.), which are:
- Header - Contains the token type and the signing algorithm used
- Payload - Contains the claims or the data being transmitted
- Signature - Used to verify that the sender of the JWT is who it says it is
Common Claims
iss
(Issuer): Identifies who issued the tokensub
(Subject): Identifies the subject of the tokenaud
(Audience): Identifies the recipients of the tokenexp
(Expiration Time): Identifies when the token expiresnbf
(Not Before): Identifies when the token starts being validiat
(Issued At): Identifies when the token was issuedjti
(JWT ID): Provides a unique identifier for the token
Note: This tool only decodes JWT tokens and displays their content. It doesn't validate signatures cryptographically. For security-sensitive applications, always verify JWT signatures using proper libraries.
How to Use
- Paste your JWT token into the input area above.
- View the decoded Header, Payload, and Signature by switching tabs.
- Click Copy to copy any part of the token or the whole token.
- Use Load Sample to try with a sample JWT, or Clear to reset.
Frequently Asked Questions (FAQ)
JWT (JSON Web Token) is a compact, URL-safe means of representing claims to be transferred between two parties. It is commonly used for authentication and information exchange.
All decoding is done locally in your browser. No data is sent to any server.
No. This tool only decodes the token and does not verify its signature. For security-critical applications, always verify JWTs on the server using trusted libraries.
While your data is not sent anywhere, never share sensitive tokens with untrusted tools or people.
Try More Free Tools!
Explore our full collection of developer, text, and media tools to boost your productivity.
Browse All Tools