JWT Decoder
Paste a JSON Web Token to instantly decode and inspect its header, payload, and claims.
Encoded Token
đ´ Header
Decoded header will appear here...
đŖ Payload
Decoded payload will appear here...
đĸ Decoded Claims
Claims will be listed
here with human-readable descriptions...
đĩ Signature
Signature info will appear here...
What is a JWT?
A JSON Web Token (JWT) is a compact, URL-safe token format used for securely transmitting information between parties. It consists of three parts separated by dots: a Header (algorithm and type), a Payload (claims/data), and a Signature (verification). JWTs are widely used for authentication, authorization, and information exchange in web applications.
How to Use
- Paste your JWT token in the input field above
- The Header shows the algorithm (e.g., HS256, RS256)
- The Payload shows the claims (user data, expiration, etc.)
- The Claims table provides human-readable descriptions for standard claims
- Expiration status is shown automatically if the token contains an
expclaim
đ Privacy note: This tool runs entirely in your browser. Your JWT is never sent to any server.