About the JWT Decoder
The JWT Decoder is an essential utility for developers working with authentication and authorization systems (like OAuth 2.0 or OIDC). It allows you to easily paste a JSON Web Token and instantly inspect its contents without needing a backend server or command-line tools.
Features
- Automatic Splitting: Paste a raw JWT string and the tool automatically splits it into its three components: Header, Payload, and Signature.
- Smart Formatting: The Header and Payload are instantly decoded from Base64URL and pretty-printed as syntax-highlighted JSON for easy reading.
- Live Claim Inspection: Standard claims are automatically identified. Expiration (`exp`), Issued At (`iat`), and Not Before (`nbf`) timestamps are converted into human-readable local dates, with a live check showing if the token is currently expired.
- Privacy First: Your tokens often contain sensitive session data. This tool runs 100% locally in your browser, guaranteeing that your tokens never leave your machine.
Simply paste your token into the top input field. The decoded information will immediately appear below, with handy copy buttons for each section.