What is a JWT?
JSON Web Token (JWT) is an open standard that defines a compact way for securely transmitting information between parties as a JSON object.
Instantly decode JSON Web Tokens to inspect headers and claims. No data is sent to the server.
// Header will appear here
// Payload will appear here
Decoding JWTs on public websites can sometimes be risky if they send your token to their backends. Our JWT Debugger is designed for the modern security-conscious developer.
This implementation uses atob() in your browser window. Your sensitive authentication tokens never leave your computer. We do not store, log, or track your tokens in any way.
Note: This tool is for decoding and inspection. It does not verify the signature. You should use your internal server logic to verify token integrity against your private keys.
JSON Web Token (JWT) is an open standard that defines a compact way for securely transmitting information between parties as a JSON object.
No. Unlike other online debuggers, we perform no network requests when you click 'Decode'. You can even use this tool offline.
A JWT typically consists of three parts: Header, Payload, and Signature, separated by dots.