# Fetch Balance

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

{% hint style="danger" %}
Please note the system will fetch the account balance using any project API Token.
{% endhint %}

## Check Balance

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

<mark style="color:green;">`POST`</mark> `https://app.pickyassist.com/api/v2/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": "PICKY_API_TOKEN"
}
```

### Sample Response

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