# Balance

### **Endpoint:**

This request retrieves the available balance of your personal account.

<mark style="color:green;">`GET`</mark> `https://proxy-seller.com/personal/api/v1/{YourApiKey}/balance/get`

**Example:**

```
https://proxy-seller.com/personal/api/v1/fj4948ffhg58gh843gh/balance/get
```

### **Response:**

{% tabs %}
{% tab title="200: OK Success response" %}

```json
{
    "status": "success",
    "data": {
        "summ": 10
    },
    "errors": []
}
```

{% endtab %}

{% tab title="200: OK Error response" %}

```json
{
    "status": "error",
    "data": null,
    "errors": [
        {
            "message": "Error api key",
            "code": 503,
            "customData": null
        },
        {
            "message": "IP not allowed",
            "code": 503,
            "customData": null
        },
        {
            "message": "Request limit reached",
            "code": 503,
            "customData": null
        }
    ]
}
```

{% endtab %}
{% endtabs %}

### Path parameters:

<table data-full-width="false"><thead><tr><th width="149">Name</th><th width="178">Value</th><th>Description</th><th data-hidden></th></tr></thead><tbody><tr><td>Authorization</td><td><code>&#x3C;Your_API_Key></code></td><td>Your personal API key</td><td></td></tr></tbody></table>

### Replenish balance

This request allows you to replenish your balance.

<mark style="color:yellow;">`POST`</mark> `https://proxy-seller.com/personal/api/v1/fj4948ffhg58gh843gh/balance/add`

#### **Example:**

```
https://proxy-seller.com/personal/api/v1/{YourApiKey}/balance/add
```

### **Response:**

{% tabs %}
{% tab title="200: OK Success response" %}

```json
{
    "status": "success",
    "data": {
        "url": "https://proxy-seller.com/personal/pay/?ORDER_ID=595PAYMENT"
    },
    "errors": []
}
```

{% endtab %}

{% tab title="200: OK Error response if response if incorrect sum payment id" %}

```json
{
    "status": "error",
    "data": null,
    "errors": [
        {
            "message": "Set existed [paymentId]",
            "code": 0,
            "customData": null
        }
    ]
}
```

{% endtab %}

{% tab title="200: OK Error response if incorrect sum " %}

```json
{
    "status": "error",
    "data": null,
    "errors": [
        {
            "message": "Set [summ > 1]",
            "code": 0,
            "customData": null
        }
    ]
}
```

{% endtab %}
{% endtabs %}

### **Path parameters:**

| Name          | Value            | Description           |
| ------------- | ---------------- | --------------------- |
| Authorization | `<Your_API_Key>` | Your personal API key |

### **Request body:**

<table><thead><tr><th width="139">Name</th><th width="134">Type</th><th>Description</th></tr></thead><tbody><tr><td>summ</td><td>Number</td><td>The amount you want to replenish</td></tr><tr><td>paymentId</td><td>Number</td><td>The ID of the payment method you selected from the list below</td></tr></tbody></table>

### Payment systems

This request shows you available payment systems for replenishing your balance.

<mark style="color:green;">`GET`</mark> `https://proxy-seller.com/personal/api/v1/fj4948ffhg58gh843gh/balance/payments/list`

#### **Example:**

```
https://proxy-seller.com/personal/api/v1/{YourApiKey}/balance/payments/list
```

### **Response:**

{% tabs %}
{% tab title="200: OK Success response" %}

```json
{
        "status": "success",
    "data": {
        "items": [
            {
                "id": "29",
                "name": "PayPal"
            },
            {
                "id": "30",
                "name": "Visa / MasterCard"
            },
            {
                "id": "41",
                "name": "USDT (TRC-20)"
            },
            {
                "id": "38",
                "name": "USDT, USDC (ERC20)"
            },
            {
                "id": "40",
                "name": "BUSD, BNB, USDC"
            },
            {
                "id": "39",
                "name": "TRX, TON, Matic, CGPT"
            },
            {
                "id": "45",
                "name": "BTC, BCH, LTC"
            },
            {
                "id": "26",
                "name": "BUSD BNB XRP ZEC DASH (>10 usd)"
            },
            {
                "id": "35",
                "name": "Binance"
            },
            {
                "id": "37",
                "name": "Visa / MasterCard (solidgate)"
            },
            {
                "id": "33",
                "name": "Advcash, Nixmoney"
            }
        ]
    },
    "errors": []
}
```

{% endtab %}

{% tab title="200: OK Error response if incorrect API key" %}

```json
{
    "status": "error",
    "data": null,
    "errors": [
        {
            "message": "Error api key",
            "code": 503,
            "customData": null
        },
        {
            "message": "IP not allowed",
            "code": 503,
            "customData": null
        },
        {
            "message": "Request limit reached",
            "code": 503,
            "customData": null
        }
    ]
}
```

{% endtab %}
{% endtabs %}

### Path parameter&#x73;**:**

| Name          | Value            | Description           |
| ------------- | ---------------- | --------------------- |
| Authorization | `<Your_API_Key>` | Your personal API key |
