> For the complete documentation index, see [llms.txt](https://docs.payvalida.com/api-cashout/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.payvalida.com/api-cashout/api-cashout-en/consult/consult-available-balance-1.md).

# Available Balance

## Consult Available Balance

<mark style="color:blue;">`GET`</mark> `https://api.payvalida.com/cashout/v1/operation/available/{merchant}`

`URL Sandbox: https://api-test.payvalida.com/v1/operation/available`**`/{merchant}`**

This method gets the current balance available in the Cashout funds

#### Path Parameters

| Name     | Type   | Description                                                   |
| -------- | ------ | ------------------------------------------------------------- |
| merchant | string | Commerce/merchant that owns the operation (Max 30 characters) |

#### Query Parameters

| Name     | Type   | Description                                                       |
| -------- | ------ | ----------------------------------------------------------------- |
| checksum | string | Checksum encoded in SHA512(merchant+FIXED\_HASH) (512 characters) |

{% tabs %}
{% tab title="200 Returns a JSON following this structure:" %}

```
{  
   "code":"0000",
   “text”:”OK”,
   "data":{
    	"available": 8017031,
    	"updatedIn": "2020-01-07T08:43:26.875965Z"
    }
}
```

{% endtab %}
{% endtabs %}

## Response data

**code:** Code of the result, "0000" indicates success, any other indicates an error&#x20;

**text:** Contains the message associated with the **code** that was sent.&#x20;

**data:** Contains the transaction data (for successful results)&#x20;

* **available:** Available amount in the bag&#x20;
* **updatedIn:** Date of the last movement (transaction) of the bag&#x20;
