Skip to main content
GET
/
v0
/
wallet
/
list
List Wallets
curl --request GET \
  --url https://api-bluvo.com/v0/wallet/list \
  --header 'x-bluvo-api-key: <api-key>' \
  --header 'x-bluvo-org-id: <api-key>' \
  --header 'x-bluvo-project-id: <api-key>'
{
  "wallets": [
    {
      "id": "wallet_01H9X3Z7N5V2KJ4G8P6QR5T3Y2",
      "exchange": "binance",
      "projectId": "project_01",
      "balances": {
        "BTC": 0.35,
        "ETH": 4.5,
        "USDT": 7500
      },
      "ipPool": [
        "1.2.3.4",
        "5.6.7.8"
      ],
      "invalidApi": false,
      "createdAt": "2024-01-05T10:30:00Z",
      "updatedAt": "2024-03-01T15:45:00Z",
      "lastSyncAt": "2024-03-01T15:45:00Z"
    },
    {
      "walletId": "wallet_02G8Y4Z8M6W3LK5H7P7RS6T4Z3",
      "exchange": "coinbase",
      "projectId": "project_01",
      "balances": {
        "BTC": 0.15,
        "ETH": 2.2,
        "USDC": 3500
      },
      "ipPool": [
        "9.10.11.12"
      ],
      "invalidApi": false,
      "createdAt": "2024-01-10T08:20:00Z",
      "updatedAt": "2024-03-02T12:15:00Z",
      "lastSyncAt": "2024-03-02T12:15:00Z"
    }
  ],
  "pagination": {
    "totalCount": 20,
    "page": 0,
    "limit": 10,
    "pageCount": 2
  }
}

Authorizations

x-bluvo-api-key
string
header
required

Bluvo API Key

x-bluvo-org-id
string
header
required

Bluvo Organization ID

x-bluvo-project-id
string
header
required

Bluvo Project ID

Query Parameters

page
number | null

Page number (0-indexed).

Required range: 0 <= x <= 1000
limit
number | null

Number of wallets per page (max 1000).

Required range: 1 <= x <= 1000
exchange
enum<string> | null

Filter by exchange.

Available options:
ace,
ascendex,
bequant,
bigone,
binance,
coinbase,
binanceus,
bingx,
bit2c,
bitbank,
bitbns,
bitcoincom,
bitfinex,
bitflyer,
bitget,
bithumb,
bitmart,
bitmex,
bitopro,
bitpanda,
bitrue,
bitso,
bitstamp,
bitteam,
bitvavo,
bybit,
bl3p,
blockchaincom,
blofin,
btcalpha,
btcbox,
btcmarkets,
btcturk,
cex,
coincheck,
coinex,
coinlist,
coinmate,
coinmetro,
coinone,
coinsph,
coinspot,
cryptocom,
delta,
deribit,
digifinex,
exmo,
fmfwio,
gate,
gateio,
gemini,
hashkey,
hitbtc,
hollaex,
htx,
huobi,
huobijp,
hyperliquid,
independentreserve,
indodax,
kraken,
krakenfutures,
kucoin,
kucoinfutures,
latoken,
lbank,
luno,
mercado,
mexc,
ndax,
novadax,
oceanex,
okcoin,
okx,
onetrading,
oxfun,
p2b,
paradex,
paymium,
phemex,
poloniex,
poloniexfutures,
probit,
timex,
tradeogre,
upbit,
vertex,
wavesexchange,
whitebit,
woo,
woofipro,
xt,
yobit,
zaif,
zonda
createdSince
string | null

Filter by creation date (from, ISO format).

createdBefore
string | null

Filter by creation date (before, ISO format).

lastSyncSince
string | null

Filter by last sync date (from, ISO format).

lastSyncBefore
string | null

Filter by last sync date (before, ISO format).

invalidApi
enum<string> | null

Filter by API validity status.

Available options:
true,
false
fields
string | null

Comma-separated list of fields to include.

Response

200 - application/json

Successful response

wallets
object[]
required
pagination
object
required
I