Paste a JSON Web Token to decode its header, payload, and inspect claims — entirely in your browser.
JSON Web Tokens (JWT) are a compact, URL-safe way to represent claims between two parties. They're widely used for:
A JWT has three parts separated by dots: header.payload.signature. This tool decodes the first two (which are Base64-encoded JSON) and shows the signature info.
Note: This tool only decodes — it does not verify signatures. Never paste production tokens with real secrets into any online tool.