What is this?

This is JWT decoder to decode token data. Useful for back-end as well as front-end developers to check token data.

What can it do?
  • It can Decode JWT token.
  • It can give you the encryption algorithm name token type if it stored inside token.
  • It can give you the payload whole data.
  • It can store latest decoded JWT history for you.
  • It can download the header and payload
Notes
  • This tool is not for validity check of JWT.
  • Not for signature verification just for decode the Base64 data.
  • Signature part of json is ignored here.
  • It stores latest decoded JWT in your browser it self.