About this tool
A no-network JWT inspector. Paste a token, see the header and payload as pretty JSON, and get a warning if exp or nbf claims are outside the current time. Signature verification is intentionally omitted — that must happen server-side with your secret.
How it works
- Split the token on '.' into header, payload, signature.
- Base64url-decode header and payload; parse as JSON.
- Compare exp / nbf against the current UNIX time and surface warnings.
When to use it
- Debugging an auth issue in local dev without exposing tokens to a public site.
- Inspecting third-party OAuth tokens during integration work.
- Teaching workshops on how JWTs are structured.