Why debug JWTs locally?
Pasting valid tokens into online debuggers can be a security risk. Our tool decodes the Base64Url-encoded parts of the token locally, so your sensitive data never leaves your computer.
Decode and inspect JSON Web Tokens (JWT) without sharing secrets or tokens online. Runs 100% in your browser.
// Header
Algorithm & Token Type
// Payload
Data (Claims)
A JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. It consists of three parts separated by dots (.):
When using JWTs, always ensure you:
Pasting valid tokens into online debuggers can be a security risk. Our tool decodes the Base64Url-encoded parts of the token locally, so your sensitive data never leaves your computer.