Sign in

🔑 JWT Decoder

Paste a JSON Web Token to inspect its header, payload, and claims - processed entirely in your browser, never sent to any server.

What is a JWT?

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.

Security considerations