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

workflow ยท developer

JWT Debug Workflow

Debug JWT auth failures: decode token, validate claims, reproduce API call with cURL. Free browser tools.

Updated 2026-05-26

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 โ†’

Preset: optimized export

FAQ

Why is my JWT returning 401?
Check exp, aud, and iss claims; clock skew and wrong signing secret are common causes.
Is it safe to paste JWTs online?
Use offline browser tools; never paste production tokens into untrusted sites.
What is the first debugging step?
Decode header and payload without verifying signature to see alg and exp.
How do I test the API after decoding?
Copy the failing request as cURL and follow our cURL API workflow.

Related