ManageSome

JWT Decoder

Decode and inspect JWT tokens

About JWT

🔐 Header

Contains the token type (JWT) and signing algorithm (e.g., HS256, RS256).

📦 Payload

Contains claims - statements about the user and additional metadata.

✍️ Signature

Verifies the token wasn't altered. Created by signing header + payload.