GET
/
v2
/
balance
Get entity balance
curl --request GET \
  --url https://b2b-api.dev-riseworks.io/v2/balance \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "rise_account_address": "<string>",
    "balances": [
      {
        "currency": "USD",
        "balance_cents": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

nanoid
string
required

Nanoid of the entity to retrieve.

currencies
enum<string>[]

Optional array of currencies to retrieve balances for. If not provided, returns all supported currencies.

Response

200
application/json

Default Response

The response is of type object.