What Is a JWT?
A JSON Web Token (JWT) is a compact, URL-safe token format used for authentication and information exchange. It consists of three Base64-encoded parts: header, payload, and signature.
Decode JSON Web Tokens (JWT) to inspect the header and payload. No signature verification — decode only.
A JSON Web Token (JWT) is a compact, URL-safe token format used for authentication and information exchange. It consists of three Base64-encoded parts: header, payload, and signature.