CodeToolsHub.dev

JWT Decoder

Live

Decode JWT header and payload locally.

All generated data is fictional and intended for development, testing, QA, prototyping, and automation only. Do not use it for fraud, impersonation, or illegal activity.

Configuration

Output· 13 lines · json
{
  "header": {
    "alg": "HS256",
    "typ": "JWT"
  },
  "payload": {
    "sub": "1234567890",
    "name": "John Doe",
    "iat": 1516239022
  },
  "signature": "SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
  "note": "Signature is NOT verified — decoding only."
}

About this tool

Decode a JWT's header and payload locally to inspect claims (sub, iat, exp, scopes). Decoding only — the signature is not verified and the token never leaves your browser.

Example output

{
  "header": {
    "alg": "HS256",
    "typ": "JWT"
  },
  "payload": {
    "sub": "1234567890",
    "name": "John Doe",
    "iat": 1516239022
  },
  "signature": "SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
  "note": "Signature is NOT verified — decoding only."
}

Frequently asked questions

Does it verify the signature?
No — this is a decoder, not a validator. It reads the header and payload without checking the signature.

Related tools