JWT Decoder & Parser Online
Decode and inspect JWT tokens instantly
Security Note
This tool only decodes JWT tokens - it does not verify signatures. Never trust decoded data without server-side verification. All processing happens locally in your browser.
Header will appear here...
Payload will appear here...
Signature will appear here...
Token Information
Algorithm
-
Type
-
Issued At
-
Expires
-
About JWT Decoder
What is JWT?
JSON Web Token (JWT) is an open standard (RFC 7519) for securely transmitting information between parties as a JSON object. JWTs are commonly used for authentication and authorization.
JWT Structure
Header: Algorithm & token type
Payload: Claims (data)
Signature: Verification
Common Claims
iss- Issuersub- Subjectaud- Audienceexp- Expiration timeiat- Issued atnbf- Not before
Note: This tool only decodes JWTs. It does not verify signatures.