JWT Decoder
Paste a JWT token to inspect its header and payload
Header
{
"alg": "HS256",
"typ": "JWT"
}Payload
{
"sub": "1234567890",
"name": "John Doe",
"iat": 1516239022
}iat:1/18/2018, 1:30:22 AM
Signature
SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
Signature verification requires the secret/key — this tool only decodes the token.