JWT (JSON Web Token)
A compact, URL-safe means of representing claims to be transferred between two parties, commonly used for authentication and authorization.
A JWT consists of three parts: a header, a payload, and a signature. The header and payload are Base64Url-encoded JSON objects. JWTs are a stateless way to verify a user's identity without needing to query a database on every request.