JWT Decoder — Inspect Token Header & Payload Free

New

Decode JSON Web Tokens and inspect header & payload

Paste a JWT and instantly view its decoded header, payload, and signature in readable JSON — useful for debugging authentication tokens. Nothing leaves your browser.

{
  "alg": "HS256",
  "typ": "JWT"
}
{
  "sub": "1234567890",
  "name": "John Doe",
  "iat": 1516239022
}
SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c

Decoding happens entirely in your browser — your token is never sent to a server. Note: this tool decodes JWTs, it does not verify signatures.