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 JWT header and payload locally. Inspect claims without server calls. Secure debugging. Fast, free, and 100% private. All processing happens locally.
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.
Last updated on