πͺ Security
JWT Debugger & Decoder
Paste any JWT token to instantly decode and inspect the header, payload and claims. Checks signature algorithm, expiry (exp), issued-at (iat) and more β entirely in your browser, nothing sent to a server.
πͺ JWT Token
π Header
Header will appear here
π¦ Payload
Payload will appear here
Privacy: Decoding happens entirely in your browser using JavaScript's
atob(). Your token is never sent to any server. However, never paste production tokens in untrusted tools β this reminder applies even here.
π How to Use This Tool
βΌ
1
Paste a JWT token (starts with eyJ...) into the input
2
Header, payload and signature decode instantly
3
Check expiry time and signing algorithm
4
Copy individual sections with the Copy buttons
π Examples
JWT decode
Input: eyJhbGciOiJIUzI1NiJ9...
Output: Header: {alg:HS256} Payload: {sub:123,name:John}