Skip to content

JWT Decoder

Securely decode JSON Web Tokens (JWT) in your browser. View headers, payloads, and claims without sending data to a server.

Updated

What is the JWT Decoder?

How it works

Examples

Standard Authentication Token

eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
Header: { "alg": "HS256", "typ": "JWT" } | Payload: { "sub": "1234567890", "name": "John Doe", "iat": 1516239022 }

Frequently asked questions