Skip to main content
POST
/
merchant
/
api
/
v1
/
balance
/
retrieve
Get Balance
curl --request POST \
  --url https://api.crypto-cash.world/merchant/api/v1/balance/retrieve/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": "<string>",
  "signature": "<string>"
}
'
{
  "code": 200,
  "data": {
    "item": {
      "accountAmount": "15.000",
      "companyAmount": "20.000"
    }
  }
}

Body

application/json

Data parameters:

  • publicKey (string, required) - Merchant public key
data
string
required

JSON object with request parameters encoded in base64

signature
string
required

Signature SHA256(SECRET_KEY + data) encoded in base64

Response

Successful response

code
integer
Example:

200

data
object