Inspect an untrusted JWT safely
- Paste a three-segment header.payload.signature value.
- Review decoded JSON as untrusted data.
- Use date interpretations only as context from this device's clock.
Decode a three-part JWT header and payload locally without verifying or trusting its signature or claims.
Enter text and choose an action.
Inspect the JSON header, payload, signature-segment presence, and common claims in a three-part JWT/JWS. Decoding only reveals text; it does not verify the signature, issuer, audience, or claim truth.
Base64URL header and payload segments are strictly decoded as UTF-8 JSON objects in memory. Nothing is fetched from an issuer and payload content is never executed.
Not necessarily. Authenticity, signature, issuer, and audience are not verified.
Decoding reads claims only. An exp timestamp in the past is informative and does not establish overall token validity.