JWT Decoder
Decode JWT Header and Payload locally. Signature verification is not performed.
Result
Header:
{
"alg": "HS256",
"typ": "JWT"
}
Payload:
{
"sub": "1234567890",
"name": "John Doe",
"iat": 1516239022,
"exp": 1893456000
}
--- Time Info ---
Issued at: 2018/1/18 09:30:22 (2018-01-18T01:30:22.000Z)
Expires at: 2030/1/1 08:00:00 (2030-01-01T00:00:00.000Z)
Status: Expires in 1253d 10h
--- Standard Fields ---
Subject: 1234567890Use Cases
- Inspect token payload
- Check exp time
- Debug API authentication
How to Use
Use the workspace above to type, paste, choose, or drop content and get the result immediately. Files and text stay local in your browser by default.
FAQ
Does it verify signatures?
No. It only decodes the token locally.
Can I paste sensitive tokens?
The tool does not upload data, but avoid handling sensitive tokens in untrusted environments.
Related Tools
Developer ToolsText
JSON Formatter
Format, minify, and validate JSON locally in your browser.
Developer ToolsText
UUID Generator
Generate UUID v4 values locally in your browser.
Developer ToolsText
Regex Tester
Test a JavaScript regular expression against text and inspect matches.
Developer ToolsText
JSON Diff
Compare two JSON values and list field-level differences.