What is a JWT?
A JSON Web Token (JWT) is a compact, URL-safe token format used for authentication and information exchange. It contains three parts: a header (algorithm and type), a payload (claims/data), and a signature. This tool decodes the header and payload — it does NOT verify the signature (that requires the secret key).