G
GuideDevOps
Encoding & Decoding

JWT Decoder

Decode and inspect JWT token header, payload, and signature.

JWT Decoder

Decode and inspect JWT tokens.

How to Use

Paste a JWT to inspect header and claims like `exp`, `iat`, and `aud`. Use this to quickly confirm token content during auth troubleshooting.

Example Usage
Input
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjMiLCJyb2xlIjoiYWRtaW4ifQ.dBjftJeZ4CVP-mB92K27uhbUJU1p1r_wW1gFWFOEjXk
Output
{
  "sub": "123",
  "role": "admin"
}