# `Codat.Lending.Banking`
[🔗](https://github.com/iamkanishka/codat.git/blob/v1.0.0/lib/codat/lending/lending.ex#L183)

Lending-enhanced banking (bank transactions) data.

Provides categorized and enriched bank transactions for cash flow analysis,
income verification, and expense categorization.

# `accounts`

```elixir
@spec accounts(Codat.Client.t() | String.t(), String.t() | keyword(), keyword()) ::
  {:ok, map()} | {:error, Codat.Error.t()}
```

Returns enhanced bank accounts.

# `transaction_categories`

```elixir
@spec transaction_categories(
  Codat.Client.t() | String.t(),
  String.t() | keyword(),
  keyword()
) ::
  {:ok, map()} | {:error, Codat.Error.t()}
```

Returns categorized bank transaction totals.

# `transactions`

```elixir
@spec transactions(Codat.Client.t() | String.t(), String.t() | keyword(), keyword()) ::
  {:ok, map()} | {:error, Codat.Error.t()}
```

Returns enhanced (categorized) bank transactions.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
