GET
/
v0
/
cex
/
wallets
curl --request GET \
  --url https://api-bluvo.com/v0/cex/wallets \
  --header 'x-bluvo-api-key: <api-key>' \
  --header 'x-bluvo-org-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

Query Parameters

page
number

Optional. Page number for pagination (0-indexed). Defaults to 0.

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

Optional. Maximum number of wallets to return per page. Defaults to 10. Maximum value is 1000.

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

Optional. Filter wallets 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,
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

Optional. Filter wallets created on or after this date (ISO format).

createdBefore
string

Optional. Filter wallets created before this date (ISO format).

lastSyncSince
string

Optional. Filter wallets synchronized on or after this date (ISO format).

lastSyncBefore
string

Optional. Filter wallets synchronized before this date (ISO format).

invalidApi
enum<string>

Optional. Filter wallets by API validity status.

Available options:
true,
false
fields
string

Optional. Comma-separated list of fields to include in the response. If not specified, all fields are included.

Response

200 - application/json
Successful response
wallets
object[]
required

List of wallets matching the filter criteria

pagination
object
required

Pagination information