> ## 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.

# GET Balance

> This end point allows you to easily fetch your wallet balance on the Dojah platform 

<ParamField header="AppId" type="string" required>
  Application ID from dashboard
</ParamField>

<ResponseField name="200" type="Object">
  <Expandable title="properties">
    <ResponseField name="wallet_balance" type="string">
      Wallet balance
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="401" type="Object">
  <Expandable title="properties">
    <ResponseField name="error" type="string">
      error message
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "entity": {
      "wallet_balance": "14132.00"
    }
  }
  ```

  ```json 400 theme={null}
  {
    "error": "Invalid request parameters"
  }
  ```

  ```json 401 theme={null}
  {
    "error": "App Couldn't be Validated"
  }
  ```
</ResponseExample>
