Paste a JWT (JSON Web Token) to see its contents.
- Header: Algo and Type.
- Payload: User data, expiration (exp), issued at (iat). Security: Tokens are decoded in-browser. We never see your keys.
Decode, verify, and inspect JSON Web Tokens locally in your browser
Enter the eyJ... string.
Read the JSON data.
Click the download or copy button to export your results to your device or clipboard.
Paste a JWT (JSON Web Token) to see its contents.
Decodes payload without needing the secret key.
Converts timestamps to readable dates.
We decode it client-side only. However, for maximum security, rotate your tokens if you feel unsure.
Currently, we only decode the payload for debugging purposes.
Beautify and minify JSON.
Encode and decode Base64 strings (Standard).
Create SHA/MD5 hashes.
Format and beautify SQL.
Convert HTML attributes to JSX props.
Test JavaScript regular expressions in real-time.
Last updated on