Text & Dev Tools
JWT Decoder & Inspector
Paste a JSON Web Token to instantly decode its header, payload, and inspect claims. Everything runs in your browser.
Examples:
JWT Token
—
Algorithm
—
Claims
—
Expiration
—
Issued
Payload
Claims SetSignature
Claims Breakdown
| Claim | Value |
|---|
JWT Quick Reference
Structure
Header — Algorithm & token type
Payload — Claims (data)
Signature — Verification hash
header.payload.signature
Registered Claims
iss Issuersub Subjectaud Audienceexp Expiration Timenbf Not Beforeiat Issued Atjti JWT IDCommon Algorithms
HS256 HMAC + SHA-256HS384 HMAC + SHA-384HS512 HMAC + SHA-512RS256 RSA + SHA-256ES256 ECDSA + SHA-256EdDSA Edwards-curve DSA
Runs in your browser
100% free forever
No data sent to server
All done!
Your file is ready for download.
Enjoying Fixie? A small donation keeps these tools free for everyone.
Related Tools
Frequently Asked Questions
Is this JWT decoder free and secure?
Yes, completely free. All decoding happens in your browser — your tokens are never sent to any server.
Can this tool verify JWT signatures?
This tool decodes and inspects JWTs, showing header, payload, and claims. For security, signature verification should be done server-side with your secret key.
What JWT formats are supported?
Standard JSON Web Tokens with three parts (header.payload.signature) using any algorithm (HS256, RS256, ES256, etc.).