JWT Decoder
Paste a JSON Web Token to decode its header, payload (claims), and signature.
Your tokens stay in your browser — nothing is uploaded to any server.
or try sample token
Paste a JSON Web Token to decode its header, payload (claims), and signature.
Your tokens stay in your browser — nothing is uploaded to any server.
A JSON Web Token (JWT) is a compact, URL-safe token format used for securely transmitting information between parties. JWTs are widely used for authentication, authorization, and information exchange in web applications and APIs. Each token has three Base64URL-encoded parts: a header, a payload, and a signature.
iat, exp, and nbf fields are shown as human-readable dates.