JWT Decoder

Decode and inspect JSON Web Tokens

100% Client-Side Processing

Your token is decoded entirely in your browser. Nothing is sent to any server.

About JWT Tokens

JSON Web Tokens (JWT) are a compact, URL-safe way of representing claims between two parties. They consist of three parts: a header (algorithm and token type), a payload (the claims/data), and a signature. JWTs are commonly used for authentication and information exchange.