Paste a JSON Web Token to inspect its header, payload, and claims - processed entirely in your browser, never sent to any server.
A JSON Web Token (JWT) is a compact, URL-safe way to represent claims between two parties. It consists of three Base64URL-encoded parts separated by dots: header.payload.signature. JWTs are commonly used for authentication and authorization in web APIs.
alg: none have no signature and should never be acceptedexp claim server-side; expired tokens must be rejected