JWT Debugger & Security Analyzer
Learn how JWTs work, explore common attacks hands-on, decode tokens, or build your own. Everything runs in your browser.
Step 1 of 8
What is a JWT?
A JSON Web Token is a compact, URL-safe way to represent claims between two parties. It's used everywhere — API authentication, SSO, session tokens. A JWT has three parts separated by dots:
header eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.payload eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOmZhbHNlLCJpYXQiOjE1MTYyMzkwMjIsImV4cCI6MTc3Mzk2NTIzNX0.signature SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
Header
Algorithm & type
Payload
Claims & data
Signature
Integrity check