JWT decoder helps you decode JSON Web Tokens to view their header, payload, and signature instantly. This free online tool is useful for developers working with authentication, authorization, and APIs. Paste your JWT to inspect its contents in a readable JSON format without verifying or modifying the token.
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c {
"alg": "HS256",
"typ": "JWT"
} {
"sub": "1234567890",
"name": "John Doe",
"iat": 1516239022
} Easily verify token contents like expiration time, user roles, and issuer.
Check if a token has been tampered with by verifying its signature locally.
This tool operates entirely in your browser. Your tokens and secrets are processed locally using JavaScript and are never sent to any external server. You can safely use this tool with sensitive tokens.
Need to generate a JWT? Use our JWT Generator.
Need to format JSON? Use our JSON Formatter.