JWT Debugger
Decode, inspect, verify, and sign JSON Web Tokens in a fast, local workspace.
JSON Web Token (JWT)
Decoded header
{
"alg": "HS256",
"typ": "JWT"
}Decoded payload
{
"sub": "1234567890",
"name": "John Doe",
"admin": true,
"iat": 1516239022
}JWT signature verification
Enter the shared secret used to sign this token.