get https://dapi.api.sui-prod.bluefin.io/userFundingHistory
Retrieves user funding history on exchange.
Client Library
import { Networks, BluefinClient, MARKET_SYMBOLS } 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.getUserFundingHistory({
symbol: MARKET_SYMBOLS.BTC,
});
console.log(resp.data);
}
main().then().catch(console.warn);
from config import TEST_ACCT_KEY, TEST_NETWORK
import asyncio
from pprint import pprint
from bluefin_v2_client import (
BluefinClient,
Networks,
MARKET_SYMBOLS,
)
async def main():
client = BluefinClient(True, Networks[TEST_NETWORK], TEST_ACCT_KEY)
await client.init(True)
orders = await client.get_funding_history(
{
"symbol": MARKET_SYMBOLS.ETH,
},
)
pprint(orders)
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 /userFundingHistory endpoint using the integrated editor on the right or locally from any language supporting HTTPs network calls.