DNS Insight

JWT Decode

JWT Decoder - Inspect JSON Web Tokens

Parse and display the contents of a JWT token to see headers, payload, and claims.

How It Works

JWTs are Base64URL encoded. The decoder splits the token by dots and decodes each part to reveal the JSON contents.

Understanding Results

You can see the algorithm, claims, and expiration time. Note: This does not verify the signature.