# Get merchant balances

## <mark style="color:$success;">\[GET]</mark> /api/v2/merchant-balance

Returns the amount of funds on a merchant balance

{% code title="Response type:" overflow="wrap" expandable="true" %}

```typescript
type Response = {
    USD: number
}
```

{% endcode %}

{% code title="Response example:" overflow="wrap" expandable="true" %}

```json
{
  "USD": 545
}
```

{% endcode %}
