JWT Inspector

The JWT Inspector produces a structured audit report for any JSON Web Token: the declared algorithm and type, every standard claim it carries, and automatic conversion of Unix timestamps into readable local dates.

What This Tool Does

Where the decoder shows raw JSON, the inspector interprets it. It reads the header to identify the signing algorithm and token type, walks the payload claim by claim, labels registered claims such as iss, sub, aud, exp, nbf and iat, and renders numeric dates as human-readable timestamps so you can audit a token at a glance.

How to Use

  1. Paste a JWT into the input field — the inspection report is generated automatically.
  2. Check the algorithm and token type reported from the header.
  3. Review each claim, with iat, exp and nbf shown as readable dates.
  4. Copy or download the report for documentation or debugging notes.

Key Features

Common Use Cases

Understanding Registered Claims

RFC 7519 defines a set of registered claims with agreed meanings: iss identifies the issuer, sub the subject, aud the intended audience, exp the expiration time, nbf the earliest valid time, iat the issuance time and jti a unique token identifier. None of them are mandatory, but validators rely on them to decide whether a token should be accepted.

Custom claims are application-defined and share the namespace with registered ones, so name them carefully to avoid collisions.

Frequently Asked Questions

What does the JWT Inspector show that the decoder does not?

The inspector interprets the token: it labels registered claims, converts timestamps to readable dates and summarizes the structure, instead of only printing raw JSON.

Does the inspector verify the signature?

No. Inspection reads and interprets the token content. Use the JWT Signature Verifier to confirm authenticity.

Which claims does it recognize?

All registered claims — iss, sub, aud, exp, nbf, iat and jti — plus any custom claims present in the payload.

Why are some timestamps shown as dates?

NumericDate claims such as iat, exp and nbf are seconds since the Unix epoch. The inspector converts them to your local time so they are easier to read.

Is my token uploaded for analysis?

No. The entire inspection runs in your browser; the token never leaves your device.

What does a missing exp claim mean?

The token has no built-in expiration. Many systems consider that risky — check whether the issuer intends tokens to be long-lived before accepting them.

Related JWT Tools

View all 12 JWT tools