# AuthEndpoints

**Kind:** Class

**Source:** [`atloria-monorepo/packages/api-client/src/endpoints/auth.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/packages/api-client/src/endpoints/auth.ts#L35)

Auth endpoints

## Methods

| Method | Signature | Returns |
|---|---|---|
| `login` | `login(email: string, password: string)` | `Promise<AuthResponse>` |
| `register` | `register(dto: RegisterDto)` | `Promise<AuthResponse>` |
| `refresh` | `refresh()` | `Promise<AuthResponse>` |
| `logout` | `logout()` | `Promise<void>` |
| `verify` | `verify()` | `Promise<{ valid: boolean }>` |
