JWT Decoder
Decode and inspect JSON Web Tokens — header, payload, and signature
✓Valid — expires in 2283654h 33m (11/20/2286, 5:46:39 PM)
Header — Algorithm & Token Type
{
"alg": "HS256",
"typ": "JWT"
}Payload — Claims & Data
{
"sub": "1234567890",
"name": "John Doe",
"iat": 1516239022,
"exp": 9999999999
}Signature
SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
The signature cannot be verified client-side without the secret key. Never share your secret key.
Standard JWT Claims Reference
issIssuer — who issued the tokensubSubject — who the token is aboutaudAudience — intended recipientsexpExpiration — Unix timestampnbfNot Before — valid from this timeiatIssued At — creation timestampjtiJWT ID — unique identifieralgAlgorithm — signing algorithm (header)❓JWT Decoder FAQ
🔗Related Tools
Base64 Encoder/Decoder
Encode and decode Base64 strings
Try this tool→
Hash Generator
Generate MD5, SHA1, SHA256, SHA512 hashes
Try this tool→
JSON Formatter
Format, validate, and beautify JSON with syntax highlighting
Try this tool→
Tip: Explore our complete toolkit to find more tools that can help with your workflow. Each tool is designed to work seamlessly with others for maximum productivity.