← Back to Tools

JWT Decoder

Securely decode and inspect JSON Web Tokens (JWT). View headers and payloads instantly. 100% Private.

Encoded Token

🔒Processing is locally in your browser.
HeaderAlgorithm & Token Type
// Header will appear here
PayloadClaims & Data
// Payload will appear here
â„šī¸Signature verification is not performed.

Understanding JWT Structure

📑

Header

Typically consists of two parts: the type of the token (JWT) and the signing algorithm being used (e.g., HS256 or RS256).

đŸ“Ļ

Payload

Contains the claims. Claims are statements about an entity (typically, the user) and additional data.

🔏

Signature

Used to verify that the sender of the JWT is who it says it is and to ensure that the message wasn't changed along the way.

Frequently Asked Questions