$ jwt --decode
jwt parser.
Decode and inspect JSON Web Tokens. View header, payload, and validate expiration.
input token
decoded token
Paste a JWT and click parse to inspect its contents.
header
alg: HS256
payload
0 claims
signature
JSON Web Token (JWT) is a compact, URL-safe token format used for authentication. It consists of three parts: header, payload, and signature, separated by dots.
The tool decodes the header and payload (which are Base64-encoded JSON). The signature is displayed but cannot be verified without the secret key.
No, everything runs client-side in your browser. The token never leaves your computer.
learn more in our detailed guide.
→ read the guide