API Reference
These docs are for v2.0. Click to read the latest docs for v2.0.1.

/userTransferHistory

Retrieves user's transfer history on exchange.

Log in to see full request history

Client Library

import { Networks, BluefinClient } from "@bluefin-exchange/bluefin-v2-client"; async function main() { const ed25519Wallet = "trigger swim reunion gate hen black real deer light nature trial dust"; const client = new BluefinClient( true, Networks.TESTNET_SUI, ed25519Wallet, "ED25519" ); await client.init(); const resp = await client.getUserTransferHistory(); console.log(resp.data); } main().then().catch(console.warn);
from pprint import pprint import asyncio from config import TEST_ACCT_KEY, TEST_NETWORK from bluefin_v2_client import BluefinClient, Networks, MARKET_SYMBOLS async def main(): client = BluefinClient( True, # agree to terms and conditions Networks[TEST_NETWORK], # network to connect with TEST_ACCT_KEY, # seed phrase of the wallet ) # initialize the client # on boards user on Bluefin. Must be set to true for first time use await client.init(True) client = BluefinClient(True, Networks[TEST_NETWORK], TEST_ACCT_KEY) await client.init(True) # history of all actions history = await client.get_transfer_history() pprint(history) await client.close_connections() if __name__ == "__main__": loop = asyncio.new_event_loop() loop.run_until_complete(main()) loop.close()

HTTPs

Alternatively, if you have obtained your auth token, call the GET /userTransferHistory endpoint using the integrated editor on the right or locally from any language supporting HTTPs network calls.

Request & Response

Query Params
double

The number of records required per page. The exchange server allows a maximum of 50 records per page.

double

The particular page number to be fetched

string

Withdraw or Deposit, which action transfer history should be fetched; if not provided, fetches all transfer history

Responses

400
Language
Credentials
Click Try It! to start a request and see the response here! Or choose an example:
application/json