Entrovix AI

JWT Decoder

Decode a JSON Web Token to read its header, claims and expiry. Runs entirely in your browser, which matters when the token you are inspecting is a real credential.

Runs in your browser — nothing is uploaded

JWT

This decodes the token so you can read it. It does not verify the signature — anyone can read a JWT, so never trust its contents without checking the signature on your server.

Decoded

Paste a token to decode it.

Why use it

Built to be genuinely useful

Tokens stay local

A JWT is a credential. This one never leaves your machine.

Expiry at a glance

exp, iat and nbf are converted to readable dates with a clear expired flag.

Free, no sign-up

No account, no usage cap, and no feature held back behind a paywall.

Handles Base64URL

JWT parts use the URL-safe alphabet, which standard decoders reject.

How it works

Three steps

  1. 1

    Paste the token — all three dot-separated parts.

  2. 2

    Read the decoded header and payload side by side.

  3. 3

    Check the expiry banner to see whether it is still valid.

What a JWT actually contains

A JWT has three Base64URL-encoded parts separated by dots: a header naming the signing algorithm, a payload of claims, and a signature. The first two are encoded, not encrypted — anyone holding the token can read them.

That is the single most misunderstood thing about JWTs. Putting anything sensitive in a payload is equivalent to publishing it, because the holder of the token can decode it without any key.

Decoding is not verifying

This tool decodes. It does not check the signature, and it cannot — verification needs the secret or public key, which should never be in a browser.

A decoded token proves nothing about authenticity. An attacker can craft any payload they like and it will decode perfectly here. Always verify the signature server-side before trusting a single claim, and reject tokens whose algorithm header you did not expect.

FAQ

Questions people ask

Need a tool like this for your business?

We build internal tools, dashboards and automation that fit how your team works.

See Our Services