Get List of Pool Buy Transactions
This endpoint covers 6 documented variants, distinguished by query parameter value:
- Get List of Pool Sell Transactions (
get-list-of-pool-sell-transactions): Get the list of pool sell transactions. - Get List of Sell Transactions (
get-list-of-sell-transactions): Fetch list of all sell transactions for a user by user_uuid - Get List of Buy Transactions (
get-list-of-buy-transactions): Get the list of external buy transactions. - Get List of Pool Buy Transactions (
get-list-of-pool-buy-transactions): Get the list of pool buy transactions. - Get List of Crypto Deposit Transactions (
get-list-of-crypto-deposit-transactions): Get the list of crypto deposit transactions. - Get List of Crypto Withdraw Transactions (
get-list-of-crypto-withdraw-transactions): Get the list of crypto withdraw transactions.
transaction_type=POOL_BUY to list pool buy transactions.Headers
Your API key (configured in credentials)
HMAC-SHA256 signature (auto-generated) To test manually: HMAC-SHA256 of apiKey + timestamp (or apiKey + timestamp + userId when X-User-Id is required), keyed with your API secret. The HMAC Generator flow computes this for you.
Unix timestamp in seconds (auto-generated) Unix seconds, e.g. Math.floor(Date.now() / 1000). Must match the timestamp used in the X-Signature computation.
Unique request identifier (auto-generated) Any unique string per request, e.g. a UUID.
User UUID (set above)
Query Parameters
Filters the list by transaction type.
EXTERNAL_SELL, POOL_SELL, SELL, BUY, POOL_BUY, EXTERNAL_BUY, DEPOSIT, WITHDRAW Maximum records to return. Defaults to 10 if invalid or absent.
Millisecond timestamp cursor.
Related topics
Get List of Buy TransactionsGet List of Pool Sell TransactionsGet List of Sell TransactionsGet List of Crypto Deposit TransactionsGet List of Crypto Withdraw Transactions