What is a JWT (JSON Web Token)?
A JSON Web Token consists of three Base64URL‑encoded parts separated by dots: header, payload, and signature. It is used to represent claims between parties in a compact, URL‑safe format.[web:307][web:312][web:316]
Why use a JWT decoder?
- Debug authentication issues by inspecting claims like exp, iss, aud, scopes, and custom fields.[web:308][web:312][web:313]
- Verify that your identity provider or API gateway is issuing tokens with the expected algorithms and metadata.[web:308][web:311][web:317]
- Learn how JWTs are structured and how header, payload, and signature pieces work together for integrity and verification.[web:314][web:316][web:320]
Security reminder
Decoding a JWT only reveals its contents and does not prove it is trustworthy. Signature verification with the correct key is required before relying on any claims contained in the token.[web:307][web:311][web:313]