JWT Decoder
Inspect JWT headers and payload claims quickly while keeping the tool read-only and signature-agnostic.
Input sample
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJzbG94bHl1c2VyIiwicm9sZSI6ImRldmVsb3BlciJ9.signature
Output sample
{
"header": {
"alg": "HS256",
"typ": "JWT"
},
"payload": {
"sub": "sloxlyuser",
"role": "developer"
},
"signature": "signature",
"verified": false,
"note": "This public decoder does not verify JWT signatures."
}
Integration notes
Submit the token under the token field. The endpoint returns the decoded header and payload with a clear note that signature validation is not performed.
Common questions
- Does the JWT decoder verify signatures?
- No. It only decodes and displays the header and payload sections.