feat(): added missing API examples
This commit is contained in:
19
examples/apidoc/V5/Account/get-transaction-log-classic.js
Normal file
19
examples/apidoc/V5/Account/get-transaction-log-classic.js
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
const { RestClientV5 } = require('bybit-api');
|
||||||
|
|
||||||
|
const client = new RestClientV5({
|
||||||
|
testnet: true,
|
||||||
|
key: 'apikey',
|
||||||
|
secret: 'apisecret',
|
||||||
|
});
|
||||||
|
|
||||||
|
client
|
||||||
|
.getClassicTransactionLogs({
|
||||||
|
limit: 1,
|
||||||
|
symbol: 'BTCUSD',
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
console.log(response);
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error(error);
|
||||||
|
});
|
||||||
@@ -7,7 +7,12 @@ const client = new RestClientV5({
|
|||||||
});
|
});
|
||||||
|
|
||||||
client
|
client
|
||||||
.getAllCoinsBalance({ accountType: 'FUND', coin: 'USDC' })
|
.getCoinBalance({
|
||||||
|
accountType: 'UNIFIED',
|
||||||
|
coin: 'USDT',
|
||||||
|
toAccountType: 'FUND',
|
||||||
|
withLtvTransferSafeAmount: 1,
|
||||||
|
})
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
console.log(response);
|
console.log(response);
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ const { RestClientV5 } = require('bybit-api');
|
|||||||
const client = new RestClientV5({
|
const client = new RestClientV5({
|
||||||
testnet: true,
|
testnet: true,
|
||||||
});
|
});
|
||||||
|
// linear
|
||||||
client
|
client
|
||||||
.getInstrumentsInfo({
|
.getInstrumentsInfo({
|
||||||
category: 'linear',
|
category: 'linear',
|
||||||
@@ -15,3 +15,29 @@ client
|
|||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// option
|
||||||
|
client
|
||||||
|
.getInstrumentsInfo({
|
||||||
|
category: 'option',
|
||||||
|
symbol: 'ETH-3JAN23-1250-P',
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
console.log(response);
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error(error);
|
||||||
|
});
|
||||||
|
|
||||||
|
// spot
|
||||||
|
client
|
||||||
|
.getInstrumentsInfo({
|
||||||
|
category: 'spot',
|
||||||
|
symbol: 'BTCUSDT',
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
console.log(response);
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error(error);
|
||||||
|
});
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ const client = new RestClientV5({
|
|||||||
testnet: true,
|
testnet: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// inverse
|
||||||
client
|
client
|
||||||
.getTickers({
|
.getTickers({
|
||||||
category: 'inverse',
|
category: 'inverse',
|
||||||
@@ -15,3 +16,31 @@ client
|
|||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// option
|
||||||
|
|
||||||
|
client
|
||||||
|
.getTickers({
|
||||||
|
category: 'option',
|
||||||
|
symbol: 'BTC-30DEC22-18000-C',
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
console.log(response);
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error(error);
|
||||||
|
});
|
||||||
|
|
||||||
|
// spot
|
||||||
|
|
||||||
|
client
|
||||||
|
.getTickers({
|
||||||
|
category: 'spot',
|
||||||
|
symbol: 'BTCUSDT',
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
console.log(response);
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error(error);
|
||||||
|
});
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ const client = new RestClientV5({
|
|||||||
});
|
});
|
||||||
|
|
||||||
client
|
client
|
||||||
.deleteSubApiKey()
|
.getAffiliateUserInfo({ uid: '1513500' })
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
console.log(response);
|
console.log(response);
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -36,10 +36,13 @@ export interface GetAllCoinsBalanceParamsV5 {
|
|||||||
|
|
||||||
export interface GetAccountCoinBalanceParamsV5 {
|
export interface GetAccountCoinBalanceParamsV5 {
|
||||||
memberId?: string;
|
memberId?: string;
|
||||||
|
toMemberId?: string;
|
||||||
accountType: AccountTypeV5;
|
accountType: AccountTypeV5;
|
||||||
coin: string;
|
coin: string;
|
||||||
|
toAccountType?: AccountTypeV5;
|
||||||
withBonus?: number;
|
withBonus?: number;
|
||||||
withTransferSafeAmount?: 0 | 1;
|
withTransferSafeAmount?: 0 | 1;
|
||||||
|
withLtvTransferSafeAmount?: 0 | 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface GetInternalTransferParamsV5 {
|
export interface GetInternalTransferParamsV5 {
|
||||||
|
|||||||
Reference in New Issue
Block a user