Home Categories Popular About

JWT Decoding Tool

Header
Payload

How the JWT Decoder Works

A JWT consists of three Base64URL‑encoded parts: header, payload, and signature. This tool decodes the header and payload so you can inspect the claims. It does not verify signatures or check token validity.

Example Payload

Decoded payload might look like:

{
  "sub": "1234567890",
  "name": "Lucas",
  "admin": true,
  "iat": 1516239022
}