We've updated โ€” New tools, dark mode, and an improved experience. ๐ŸŽ‰

workflow ยท developer

JWT Debug Workflow

Debug JWT auth issues: decode token, check exp/alg, reproduce API with cURL. Free developer tools.

Updated 2026-05-21

Steps

  1. Paste token Inspect header and payload; note exp and alg. Open tool โ†’
  2. Validate JSON claims Copy payload JSON if you need structure checks. Open tool โ†’
  3. Reproduce API call Paste failing Authorization header from DevTools as cURL. Open tool โ†’

FAQ

How do I check if a JWT is expired?
Decode with JWT decoder and read the exp claim (Unix timestamp).
Can I verify the signature in browser?
Decoder shows payload; signature verification needs your secret in backend code.
API still returns 401 after refresh?
Use cURL parser to compare Authorization headers between working and failing calls.

Related