Update your browser or use a current version of Chrome, Edge, Firefox or Safari.
A JSON Web Token is a compact string made from three Base64URL segments: a header, a payload, and a signature. This debugger decodes the first two segments in your browser, explains familiar claims, and maps time-based claims onto a practical timeline. The token is not sent to the iLoveTools.LoL server, added to a URL, or saved between sessions.
The compact form is header.payload.signature. The header and payload are Base64URL-decoded as UTF-8 and parsed as JSON objects. Decoding makes the data readable; it does not establish that the data is authentic.
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
.
eyJzdWIiOiJ1c2VyXzQyIiwiZXhwIjoxNzM1Njg5NjAwfQ
.
signature-bytes
Usually names an algorithm with alg, a type with typ, and sometimes a key selector such as kid.
Contains registered claims such as iss, sub, aud, iat, nbf, and exp, plus application-specific claims.
Can protect integrity only when a verifier uses an allowed algorithm, the correct key, and strict claim validation.
JWT time claims use seconds since the Unix epoch. The debugger shows both local time and UTC for easier incident analysis.
A decoded token can still be forged, expired, intended for another audience, issued by an untrusted party, or signed with an unacceptable algorithm. Production authentication code must verify the signature and independently validate the algorithm, issuer, audience, expiration, not-before time, and any application-specific authorization rules.
exp, and allow only a small, deliberate clock-skew tolerance.iss and aud against exact expected values.kid, jku, and certificate URLs as untrusted input.No. The Vue interface decodes the token locally in your browser. Token contents are not submitted to Laravel, added to the page URL, or persisted by this tool.
JWT payloads are normally encoded rather than encrypted, so readability is expected. Security depends on correct signature verification, claim validation, transport protection, and avoiding sensitive payload data.
No. This debugger intentionally separates decoding from trust. It displays the signature segment but does not accept a secret or public key and does not claim that the token is authentic.
exp is the expiration time, nbf is the earliest acceptable time, and iat records when the token was issued. Each is a NumericDate measured in Unix seconds.
alg: none denotes an unsecured JWT with no cryptographic signature. It should not be accepted by systems that require authenticated tokens.
Yes. Malformed segments receive a targeted error, while structurally valid expired or future tokens remain readable and are clearly labeled by their time-claim status.