19 lines
357 B
JavaScript
19 lines
357 B
JavaScript
// https://api.bybit.com/v5/broker/account-info
|
|
|
|
const { RestClientV5 } = require('bybit-api');
|
|
|
|
const client = new RestClientV5({
|
|
testnet: true,
|
|
key: 'apikey',
|
|
secret: 'apisecret',
|
|
});
|
|
|
|
client
|
|
.getAffiliateUserInfo({ uid: '1234567890' })
|
|
.then((response) => {
|
|
console.log(response);
|
|
})
|
|
.catch((error) => {
|
|
console.error(error);
|
|
});
|