> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blockradar.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Master Wallet API

> Manage your master wallets, balances, and sweep operations.

The Master Wallet API is the root of your Blockradar integration. A master wallet represents your organization's wallet on a given blockchain network. It holds funds, manages child addresses, and is the source for all outbound transactions.

## What you can do

* Retrieve wallet details and current configuration
* Fetch balances for all assets held in the wallet
* Trigger asset sweeps to consolidate funds from child addresses
* View webhook delivery logs for the wallet

## Endpoints

| Method  | Endpoint                             | Description                              |
| ------- | ------------------------------------ | ---------------------------------------- |
| `GET`   | `/wallets/{walletId}`                | Get wallet details                       |
| `PATCH` | `/wallets/{walletId}`                | Update wallet settings                   |
| `GET`   | `/wallets/{walletId}/balance`        | Get balance for a single asset           |
| `GET`   | `/wallets/{walletId}/balances`       | Get balances for all assets              |
| `POST`  | `/wallets/{walletId}/deposit-finder` | Recover missing deposits                 |
| `POST`  | `/wallets/{walletId}/trigger-sweep`  | Trigger asset sweep from child addresses |
| `GET`   | `/wallets/{walletId}/webhook-logs`   | View webhook delivery logs               |

<Card title="Full API Reference" icon="book" href="/en/api-reference/wallet/get-wallet">
  View all master wallet endpoints in the API Reference tab.
</Card>
