/wallet-list
Lists hot wallets across payment sources with cursor-based pagination
Authorization
API-Key token<token>
API key authentication via header (token)
In: header
Query Parameters
take?number
The number of wallets to return
Default
10Range
1 <= value <= 100cursorId?string
Used to paginate through the wallets (provide the id of the last returned wallet)
Length
length <= 250paymentSourceId?string
Filter wallets to a single payment source
Length
length <= 250walletType?string
Filter wallets by type (Selling or Purchasing)
Value in
"Selling" | "Purchasing"walletVkey?string
Filter to the single wallet with this payment key hash
Length
length <= 250walletAddress?string
Filter to wallets with this Cardano address
Length
length <= 250Response Body
application/json
curl -X GET "https://loading/./../api/v1/wallet/list"{
"status": "success",
"data": {
"Wallets": [
{
"id": "unique_cuid_v2_auto_generated",
"paymentSourceId": "unique_cuid_v2_of_payment_source",
"type": "Selling",
"walletVkey": "wallet_vkey",
"walletAddress": "wallet_address",
"collectionAddress": null,
"note": "note",
"LowBalanceSummary": {
"isLow": false,
"lowRuleCount": 0,
"lastCheckedAt": "1970-01-20T20:00:36.260Z"
}
}
]
}
}


