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

# Fund Your Wallet and Check Balance

> Add funds to your Dojah wallet via transfer or Paystack. Check balance on the dashboard or via API so your verifications never stop.

A certain amount is deducted from your wallet. To ensure uninterrupted access to our services, keep your wallet adequately funded at all times.

<Tabs>
  <Tab title="Fund Wallet">
    You can fund your wallet directly on the dashboard from the billing page using any of the following options:

    1. Transfer to an assigned virtual account
    2. Paystack

           <img src="https://mintcdn.com/dojah/6ma7Ke9nd9VaAYrX/images/fund_wallet.jpg?fit=max&auto=format&n=6ma7Ke9nd9VaAYrX&q=85&s=3dc0c8e9c4ec9a258c6fec2bdca41430" alt="Fund Wallet" width="1280" height="694" data-path="images/fund_wallet.jpg" />
  </Tab>

  <Tab title="Check Wallet Balance">
    You can check your balance directly on the dashboard or use this endpoint below to fetch your current dojah balance

    ```json theme={null}
    {{baseUrl}}/api/v1/balance
    ```

    ### Header

    | Header                                     | Type     | Description                                        |
    | ------------------------------------------ | -------- | -------------------------------------------------- |
    | <font color="#3977de">AppId</font>         | `string` | Create an app to get your app ID on dashboard here |
    | <font color="#3977de">Authorization</font> | `string` | Private/secret key                                 |

    ### Response

    ```json Response lines theme={null}
    	{
    	    "entity": {
    	        "wallet_balance": "550.50"
    	    }
    	}
    ```
  </Tab>
</Tabs>
