Balance

In this section, you will learn which actions you can perform with your balance

Get balance

This request retrieves the available balance of your personal account.

GET https://proxy-seller.com/api/v1/{YourApiKey}/balance/get

Example:

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

Path parameters:

NameValueDescription

Authorization

<Your_API_Key>

Your personal API key

Response:

{
    "status": "success",
    "data": {
        "sum": 10
    },
    "errors": []
}

Replenish balance

This request allows you to replenish your balance.

POST https://proxy-seller.com/api/v1/fj4948ffhg58gh843gh/balance/add

Example:

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

Path parameters:

NameValueDescription

Authorization

<Your_API_Key>

Your personal API key

Request body:

NameTypeDescription

summ

Number

The amount you want to replenish

paymentId

Number

The ID of the payment method you selected from the list below

Response:

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

Payment systems

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

GET https://proxy-seller.com/api/v1/fj4948ffhg58gh843gh/balance/payments/list

Example:

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

Path parameters:

NameValueDescription

Authorization

<Your_API_Key>

Your personal API key

Response:

{
        "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": []
}

Last updated