← Back to all tools

Goodfolk Developer Utilities

JWT Decoder

Decode JWT headers and payloads locally in your browser for quick inspection.

This decoder runs locally in the browser and does not verify the token signature. Avoid pasting sensitive production tokens into random tools.

Decoded JWT

AlgorithmHS256
TypeJWT
Subject1234567890
Issued at11/14/2023, 10:13:20 PM
Expires at11/15/2023, 10:13:20 PM

Header JSON

{
  "alg": "HS256",
  "typ": "JWT"
}

Payload JSON

{
  "sub": "1234567890",
  "name": "Goodfolk Toolbox",
  "iat": 1700000000,
  "exp": 1700086400
}

Signature

signature

Related tools