Balances

There is a balance for every currency within your company.

Fiat balance

You can find the fiat balance here.

Fiat balance increases when you:

  • choose the autoexchange workflow and your user sends money to our crypto addresses

  • receive paid invoices

Crypto balance

You can find the crypto balance here.

Crypto balance increases when you:

  • choose the flexible workflow

  • choose autoexchange workflow but user paid less then the limits for service.

Crypto balance Top-up

Your users can withdraw overflow deposit. You can send crypto money without service fee. We generate crypto addresses for your company here.

API method

Get balances

GET https:// my.cryptopayments.pro/api/v2/balance

Headers

NameTypeDescription

X-Processing-Signature

string

Signature

X-Processing-Key

string

Api key

Content-type

string

application/json

{
  balance: [
    { currency_name: 'USD', value: 50000 },
    { currency_name: 'EUR', value: 50000 },
    { currency_name: 'BTC', value: 1000 },
    { currency_name: 'ETH', value: 1000.13167 },
    { currency_name: 'ZUSD', value: 0 },
    { currency_name: 'ZEUR', value: 0 },
    { currency_name: 'USDT', value: 0 },
    { currency_name: 'BET', value: 0 }
  ]
}
    curl https://my.cryptopayments.pro/api/v2/balance \
    -H 'Content-type: application/json' \
    -H 'X-Processing-Key: U4VndQHU...2llskf' \
    -H 'X-Processing-Signature: a47de328cc6239f45e....30d598db6ef6fb942ddf0'

For signature use empty javascript object {}

Last updated