Inspect a JWT payload

All workflow recipes

Developer Debugging

This recipe helps inspect claims during development. Decoding does not verify the token signature or prove authenticity.

Transformation steps

  1. 1Decode JWT payload
  2. 2Format JSON

Example input

eyJhbGciOiJub25lIn0.eyJzdWIiOiIxMjMiLCJuYW1lIjoiQWRhIn0.

Expected output

{
  "sub": "123",
  "name": "Ada"
}

Local and private: this recipe runs entirely in your browser. Opening it transfers the example input through local storage on this device; copied recipe links contain the workflow definition only.

Related recipes