# Fetch Account Balance

This API allows you to fetch the current balance of your account

## Check Balance

<mark style="color:green;">`POST`</mark> `https://pickyassist.com/app/api/v2/pm/check-balance`

This API request will fetch the available balance in the account

#### Request Body

| Name  | Type   | Description                      |
| ----- | ------ | -------------------------------- |
| token | string | Your API Token for authorisation |

{% tabs %}
{% tab title="200 " %}

```javascript
{
   "balance":59.108,
   "status":100,
   "message":"Success"
}
```

{% endtab %}
{% endtabs %}

### Sample Request

```javascript
{
  "token": "343434dfdfsd"
}
```

### Sample Response

```javascript
{
   "balance":59.108,
   "status":100,
   "message":"Success"
}
```
