Bearer auth is an Token Auth-based approach where tokens serve as the key to access a protected resource. Often used for APIs.
Bearer token are commonly added to request like this:
Authorization: Bearer eyJhbGciOiJIUzI1...
As the token, often a JWT is used.
Compared to Session auth with cookies or cookie auth with JWTs the relevant information is send within the actual request - not as cookies.