How to Use JWT Decoder
- Paste your JWT token into the input area.
- The tool decodes header and payload JSON immediately.
- Review claims safely without sending token to a server.
Free online JWT decoder to decode JWT header and payload locally in your browser.
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjMifQ.signature
Header:
{
"alg": "HS256",
"typ": "JWT"
}
Payload:
{
"sub": "123"
}