Sign in
Info/Balance

Balance

Get the list of merchant accounts with their balances per currency.

The Balance endpoint returns all merchant accounts in the project with their available balances, USD equivalents, and any locked amounts.

Get balance

Returns the list of merchant accounts. The request takes no body — the signature is computed over an empty string.

Response fields

Each account in result includes:

FieldTypeDescription
uuidstringAccount UUID
statusstringAccount status (active, disabled)
currency_codestringAccount currency
balancedecimalAvailable balance
balance_usddecimalAvailable balance in USD
locked_balancedecimalAmount locked due to AML

Response example

JSON
{
  "state": 0,
  "result": [
    {
      "uuid": "abc123-def456-...",
      "status": "active",
      "currency_code": "USDT",
      "balance": "1250.50",
      "balance_usd": "1250.50",
      "locked_balance": "0.00"
    },
    {
      "uuid": "def456-abc789-...",
      "status": "active",
      "currency_code": "BTC",
      "balance": "0.01320000",
      "balance_usd": "1251.20",
      "locked_balance": "0.00000000"
    }
  ]
}
Credentials
RequestGET/v1/balance
curl -X GET https://api.2328.io/api/v1/balance \
  -H "Content-Type: application/json" \
  -H "User-Agent: MyShop/1.0 (+https://myshop.example)" \
  -H "project: YOUR_PROJECT_UUID" \
  -H "sign: YOUR_HMAC_SIGNATURE"
Response
Click Try it to see the response here.