What a JWT decoder can safely tell you
A compact JWT typically contains a Base64URL-encoded header, a Base64URL-encoded payload and a signature. The first two parts can be decoded without any secret key.
That means decoding only reveals the claims carried in the token. It does not prove that the issuer created the token or that the payload has not been altered.