Skip to main content
POST
/
accounts
/
list
Get a list of balances
curl --request POST \
  --url https://app.cryptoprocessing.com/api/v2/accounts/list \
  --header 'Content-Type: application/json' \
  --header 'X-Processing-Key: <api-key>' \
  --header 'X-Processing-Signature: <x-processing-signature>' \
  --data '{}'
{
  "data": [
    {
      "currency": "BTC",
      "type": "crypto",
      "balance": "0.04"
    },
    {
      "currency": "USD",
      "type": "fiat",
      "balance": "10000"
    }
  ]
}

Authorizations

X-Processing-Key
string
header
required

Your API key.

Headers

X-Processing-Signature
string
required

Hex-encoded HMAC-SHA512 signature of the request body, generated using your secret key.

Body

application/json

The Content-Type: application/json header must be specified even though the request body has no fields.

This endpoint does not accept any request parameters, but you must still send an empty JSON object ({}) in the request body.

Response

OK

data
object[]
Last modified on April 28, 2026