Merge pull request #267 from tiagosiebler/updatesv5
v3.7.0: add missing v5 endpoints, add new tpsl request/response v3 & v5 parameters, add rest api samples for docs
This commit is contained in:
3
examples/apidoc/README.md
Normal file
3
examples/apidoc/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# API Doc Examples
|
||||
|
||||
These are per-endpoint JavaScript examples also found in Bybit's API documentation website, demonstrating how to interact with each endpoint with the Node.js SDK.
|
||||
3
examples/apidoc/V5/Account/README.md
Normal file
3
examples/apidoc/V5/Account/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# V5 - REST - Account
|
||||
|
||||
https://bybit-exchange.github.io/docs/v5/account/wallet-balance
|
||||
16
examples/apidoc/V5/Account/get-account-info.js
Normal file
16
examples/apidoc/V5/Account/get-account-info.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getAccountInfo()
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Account/get-coin-greeks.js
Normal file
16
examples/apidoc/V5/Account/get-coin-greeks.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getCoinGreeks('BTC')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Account/get-collateral-info.js
Normal file
16
examples/apidoc/V5/Account/get-collateral-info.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getCollateralInfo('BTC')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
19
examples/apidoc/V5/Account/get-fee-rate.js
Normal file
19
examples/apidoc/V5/Account/get-fee-rate.js
Normal file
@@ -0,0 +1,19 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getFeeRate({
|
||||
category: 'linear',
|
||||
symbol: 'ETHUSDT',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Account/get-mmp-state.js
Normal file
16
examples/apidoc/V5/Account/get-mmp-state.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getMMPState('ETH')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Account/get-transaction-log.js
Normal file
20
examples/apidoc/V5/Account/get-transaction-log.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getTransactionLog({
|
||||
accountType: 'UNIFIED',
|
||||
category: 'linear',
|
||||
currency: 'USDT',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
19
examples/apidoc/V5/Account/get-wallet-balance.js
Normal file
19
examples/apidoc/V5/Account/get-wallet-balance.js
Normal file
@@ -0,0 +1,19 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getWalletBalance({
|
||||
accountType: 'UNIFIED',
|
||||
coin: 'BTC',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Account/reset-mmp.js
Normal file
16
examples/apidoc/V5/Account/reset-mmp.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.resetMMP('ETH')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Account/set-margin-mode.js
Normal file
16
examples/apidoc/V5/Account/set-margin-mode.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.setMarginMode('PORTFOLIO_MARGIN')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
22
examples/apidoc/V5/Account/set-mmp.js
Normal file
22
examples/apidoc/V5/Account/set-mmp.js
Normal file
@@ -0,0 +1,22 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.setMMP({
|
||||
baseCoin: 'ETH',
|
||||
window: '5000',
|
||||
frozenPeriod: '100000',
|
||||
qtyLimit: '50',
|
||||
deltaLimit: '20',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Account/upgrade-to-unified-account.js
Normal file
16
examples/apidoc/V5/Account/upgrade-to-unified-account.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.upgradeToUnifiedAccount()
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
3
examples/apidoc/V5/Asset/README.md
Normal file
3
examples/apidoc/V5/Asset/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# V5 - REST - Asset
|
||||
|
||||
https://bybit-exchange.github.io/docs/v5/asset/exchange
|
||||
16
examples/apidoc/V5/Asset/cancel-withdrawal.js
Normal file
16
examples/apidoc/V5/Asset/cancel-withdrawal.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.cancelWithdrawal('10197')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
22
examples/apidoc/V5/Asset/create-internal-transfer.js
Normal file
22
examples/apidoc/V5/Asset/create-internal-transfer.js
Normal file
@@ -0,0 +1,22 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.createInternalTransfer(
|
||||
'42c0cfb0-6bca-c242-bc76-4e6df6cbcb16',
|
||||
'BTC',
|
||||
'0.05',
|
||||
'UNIFIED',
|
||||
'CONTRACT',
|
||||
)
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
24
examples/apidoc/V5/Asset/create-universal-transfer.js
Normal file
24
examples/apidoc/V5/Asset/create-universal-transfer.js
Normal file
@@ -0,0 +1,24 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.createUniversalTransfer({
|
||||
transferId: 'be7a2462-1138-4e27-80b1-62653f24925e',
|
||||
coin: 'ETH',
|
||||
amount: '0.5',
|
||||
fromMemberId: 592334,
|
||||
toMemberId: 691355,
|
||||
fromAccountType: 'CONTRACT',
|
||||
toAccountType: 'UNIFIED',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.enableUniversalTransferForSubUIDs(['554117', '592324', '592334'])
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Asset/get-all-coins-balance.js
Normal file
16
examples/apidoc/V5/Asset/get-all-coins-balance.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getAllCoinsBalance({ accountType: 'FUND', coin: 'USDC' })
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
19
examples/apidoc/V5/Asset/get-allowed-deposit-coin-info.js
Normal file
19
examples/apidoc/V5/Asset/get-allowed-deposit-coin-info.js
Normal file
@@ -0,0 +1,19 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getAllowedDepositCoinInfo({
|
||||
coin:"ETH",
|
||||
chain:"ETH",
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Asset/get-asset-info-spot.js
Normal file
16
examples/apidoc/V5/Asset/get-asset-info-spot.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getAssetInfo({ accountType: 'FUND', coin: 'USDC' })
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Asset/get-coin-exchange-records.js
Normal file
16
examples/apidoc/V5/Asset/get-coin-exchange-records.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getCoinExchangeRecords({ limit: 10 })
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Asset/get-coin-info.js
Normal file
16
examples/apidoc/V5/Asset/get-coin-info.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getCoinInfo('ETH')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Asset/get-delivery-record.js
Normal file
16
examples/apidoc/V5/Asset/get-delivery-record.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getDeliveryRecord({ category: 'option', expDate: '29DEC22' })
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
18
examples/apidoc/V5/Asset/get-deposit-records.js
Normal file
18
examples/apidoc/V5/Asset/get-deposit-records.js
Normal file
@@ -0,0 +1,18 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getDepositRecords({
|
||||
coin: 'USDT'
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
19
examples/apidoc/V5/Asset/get-internal-deposit-records.js
Normal file
19
examples/apidoc/V5/Asset/get-internal-deposit-records.js
Normal file
@@ -0,0 +1,19 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getInternalDepositRecords({
|
||||
startTime: 1667260800000,
|
||||
endTime: 1667347200000,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
19
examples/apidoc/V5/Asset/get-internal-transfer-records.js
Normal file
19
examples/apidoc/V5/Asset/get-internal-transfer-records.js
Normal file
@@ -0,0 +1,19 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getInternalTransferRecords({
|
||||
coin: 'USDT',
|
||||
limit: 1,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Asset/get-master-deposit-address.js
Normal file
16
examples/apidoc/V5/Asset/get-master-deposit-address.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getMasterDepositAddress('USDT', 'ETH')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Asset/get-single-coin-balance.js
Normal file
16
examples/apidoc/V5/Asset/get-single-coin-balance.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getAllCoinsBalance({ accountType: 'FUND', coin: 'USDC' })
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Asset/get-sub-deposit-address.js
Normal file
16
examples/apidoc/V5/Asset/get-sub-deposit-address.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getSubDepositAddress('USDT', 'TRX', '592334')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Asset/get-sub-deposit-records.js
Normal file
20
examples/apidoc/V5/Asset/get-sub-deposit-records.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getSubAccountDepositRecords({
|
||||
coin: 'USDT',
|
||||
limit: 1,
|
||||
subMemberId: '592334',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Asset/get-sub-uid.js
Normal file
16
examples/apidoc/V5/Asset/get-sub-uid.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getSubUID()
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Asset/get-transferable-coin.js
Normal file
16
examples/apidoc/V5/Asset/get-transferable-coin.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getTransferableCoinList('UNIFIED', 'CONTRACT')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
19
examples/apidoc/V5/Asset/get-universal-transfer-records.js
Normal file
19
examples/apidoc/V5/Asset/get-universal-transfer-records.js
Normal file
@@ -0,0 +1,19 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getUniversalTransferRecords({
|
||||
limit: 1,
|
||||
cursor: 'eyJtaW5JRCI6MTc5NjU3OCwibWF4SUQiOjE3OTY1Nzh9',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Asset/get-usdc-session-settlement.js
Normal file
16
examples/apidoc/V5/Asset/get-usdc-session-settlement.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getSettlementRecords({ category: 'linear' })
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
18
examples/apidoc/V5/Asset/get-withdrawable-amount.js
Normal file
18
examples/apidoc/V5/Asset/get-withdrawable-amount.js
Normal file
@@ -0,0 +1,18 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getWithdrawableAmount({
|
||||
coin: 'USDT',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Asset/get-withdrawal-records.js
Normal file
20
examples/apidoc/V5/Asset/get-withdrawal-records.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getWithdrawalRecords({
|
||||
coin: 'USDT',
|
||||
withdrawType: 2,
|
||||
limit: 2,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
18
examples/apidoc/V5/Asset/set-deposit-account.js
Normal file
18
examples/apidoc/V5/Asset/set-deposit-account.js
Normal file
@@ -0,0 +1,18 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.setDepositAccount({
|
||||
accountType: 'CONTRACT'
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
24
examples/apidoc/V5/Asset/withdraw.js
Normal file
24
examples/apidoc/V5/Asset/withdraw.js
Normal file
@@ -0,0 +1,24 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.submitWithdrawal({
|
||||
coin: 'USDT',
|
||||
chain: 'ETH',
|
||||
address: '0x99ced129603abc771c0dabe935c326ff6c86645d',
|
||||
amount: '24',
|
||||
timestamp: 1672196561407,
|
||||
forceChain: 0,
|
||||
accountType: 'FUND',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
3
examples/apidoc/V5/Market/README.md
Normal file
3
examples/apidoc/V5/Market/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# V5 - REST - Market
|
||||
|
||||
https://bybit-exchange.github.io/docs/v5/market/kline
|
||||
14
examples/apidoc/V5/Market/get-delivery-price.js
Normal file
14
examples/apidoc/V5/Market/get-delivery-price.js
Normal file
@@ -0,0 +1,14 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getDeliveryPrice({ category: 'option', symbol: 'ETH-26DEC22-1400-C' })
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
18
examples/apidoc/V5/Market/get-funding-rate-history.js
Normal file
18
examples/apidoc/V5/Market/get-funding-rate-history.js
Normal file
@@ -0,0 +1,18 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getFundingRateHistory({
|
||||
category: 'linear',
|
||||
symbol: 'ETHPERP',
|
||||
limit: 1,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
18
examples/apidoc/V5/Market/get-historical-volatility.js
Normal file
18
examples/apidoc/V5/Market/get-historical-volatility.js
Normal file
@@ -0,0 +1,18 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getHistoricalVolatility({
|
||||
category: 'option',
|
||||
baseCoin: 'ETH',
|
||||
period: 30,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
17
examples/apidoc/V5/Market/get-instruments-info.js
Normal file
17
examples/apidoc/V5/Market/get-instruments-info.js
Normal file
@@ -0,0 +1,17 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getInstrumentsInfo({
|
||||
category: 'linear',
|
||||
symbol: 'BTCUSDT',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Market/get-insurance.js
Normal file
16
examples/apidoc/V5/Market/get-insurance.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getInsurance({
|
||||
coin: 'ETH',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
21
examples/apidoc/V5/Market/get-kline-index-price.js
Normal file
21
examples/apidoc/V5/Market/get-kline-index-price.js
Normal file
@@ -0,0 +1,21 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getIndexPriceKline({
|
||||
category: 'inverse',
|
||||
symbol: 'BTCUSDZ22',
|
||||
interval: '1',
|
||||
start: 1670601600000,
|
||||
end: 1670608800000,
|
||||
limit: 2,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
21
examples/apidoc/V5/Market/get-kline-mark-price.js
Normal file
21
examples/apidoc/V5/Market/get-kline-mark-price.js
Normal file
@@ -0,0 +1,21 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getMarkPriceKline({
|
||||
category: 'linear',
|
||||
symbol: 'BTCUSD',
|
||||
interval: '15',
|
||||
start: 1670601600000,
|
||||
end: 1670608800000,
|
||||
limit: 1,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Market/get-kline-premium-index-price.js
Normal file
20
examples/apidoc/V5/Market/get-kline-premium-index-price.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getPremiumIndexPriceKline({
|
||||
category: 'linear',
|
||||
symbol: 'BTCUSDT',
|
||||
interval: 'D',
|
||||
start: 1652112000000,
|
||||
end: 1652544000000,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Market/get-kline.js
Normal file
20
examples/apidoc/V5/Market/get-kline.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getKline({
|
||||
category: 'inverse',
|
||||
symbol: 'BTCUSD',
|
||||
interval: '60',
|
||||
start: 1670601600000,
|
||||
end: 1670608800000,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Market/get-open-interest.js
Normal file
20
examples/apidoc/V5/Market/get-open-interest.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getOpenInterest({
|
||||
category: 'inverse',
|
||||
symbol: 'BTCUSD',
|
||||
intervalTime: '5min',
|
||||
startTime: 1669571100000,
|
||||
endTime: 1669571400000,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
17
examples/apidoc/V5/Market/get-orderbook.js
Normal file
17
examples/apidoc/V5/Market/get-orderbook.js
Normal file
@@ -0,0 +1,17 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getOrderbook({
|
||||
category: 'linear',
|
||||
symbol: 'BTCUSDT',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
18
examples/apidoc/V5/Market/get-public-trading-history.js
Normal file
18
examples/apidoc/V5/Market/get-public-trading-history.js
Normal file
@@ -0,0 +1,18 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getPublicTradingHistory({
|
||||
category: 'spot',
|
||||
symbol: 'BTCUSDT',
|
||||
limit: 1,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
17
examples/apidoc/V5/Market/get-risk-limit.js
Normal file
17
examples/apidoc/V5/Market/get-risk-limit.js
Normal file
@@ -0,0 +1,17 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getRiskLimit({
|
||||
category: 'inverse',
|
||||
symbol: 'BTCUSD',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
17
examples/apidoc/V5/Market/get-tickers.js
Normal file
17
examples/apidoc/V5/Market/get-tickers.js
Normal file
@@ -0,0 +1,17 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getTickers({
|
||||
category: 'inverse',
|
||||
symbol: 'BTCUSDT',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
3
examples/apidoc/V5/Position/README.md
Normal file
3
examples/apidoc/V5/Position/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# V5 - REST - Position
|
||||
|
||||
https://bybit-exchange.github.io/docs/v5/position
|
||||
20
examples/apidoc/V5/Position/add-or-reduce-margin.js
Normal file
20
examples/apidoc/V5/Position/add-or-reduce-margin.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.addOrReduceMargin({
|
||||
category: 'linear',
|
||||
symbol: 'BTCUSDT',
|
||||
margin: '10',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
19
examples/apidoc/V5/Position/get-closed-pnl.js
Normal file
19
examples/apidoc/V5/Position/get-closed-pnl.js
Normal file
@@ -0,0 +1,19 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getClosedPnL({
|
||||
category: 'linear',
|
||||
limit: 1,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Position/get-execution.js
Normal file
20
examples/apidoc/V5/Position/get-execution.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.addOrReduceMargin({
|
||||
category: 'linear',
|
||||
symbol: 'BTCUSDT',
|
||||
margin: '10',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
19
examples/apidoc/V5/Position/get-position-info.js
Normal file
19
examples/apidoc/V5/Position/get-position-info.js
Normal file
@@ -0,0 +1,19 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getPositionInfo({
|
||||
category: 'inverse',
|
||||
symbol: 'BTCUSD',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Position/set-auto-add-margin.js
Normal file
20
examples/apidoc/V5/Position/set-auto-add-margin.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.setAutoAddMargin({
|
||||
category: 'linear',
|
||||
symbol: 'BTCUSDT',
|
||||
autoAddMargin: 1,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
21
examples/apidoc/V5/Position/set-leverage.js
Normal file
21
examples/apidoc/V5/Position/set-leverage.js
Normal file
@@ -0,0 +1,21 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.setLeverage({
|
||||
category: 'linear',
|
||||
symbol: 'BTCUSDT',
|
||||
buyLeverage: '6',
|
||||
sellLeverage: '6',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Position/set-risk-limit.js
Normal file
20
examples/apidoc/V5/Position/set-risk-limit.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.setRiskLimit({
|
||||
category: 'linear',
|
||||
symbol: 'BTCUSDT',
|
||||
riskId: 4,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Position/set-tpsl-mode.js
Normal file
20
examples/apidoc/V5/Position/set-tpsl-mode.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.setTPSLMode({
|
||||
symbol: 'XRPUSDT',
|
||||
category: 'linear',
|
||||
tpSlMode: 'Full',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
31
examples/apidoc/V5/Position/set-trading-stop.js
Normal file
31
examples/apidoc/V5/Position/set-trading-stop.js
Normal file
@@ -0,0 +1,31 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.setTradingStop({
|
||||
category: 'linear',
|
||||
symbol: 'XRPUSDT',
|
||||
takeProfit: '0.5',
|
||||
stopLoss: '0.2',
|
||||
tpTriggerBy: 'MarkPrice',
|
||||
slTriggerBy: 'IndexPrice',
|
||||
tpslMode: 'Partial',
|
||||
tpOrderType: 'Limit',
|
||||
slOrderType: 'Limit',
|
||||
tpSize: '50',
|
||||
slSize: '50',
|
||||
tpLimitPrice: '0.49',
|
||||
slLimitPrice: '0.21',
|
||||
positionIdx: 0,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
22
examples/apidoc/V5/Position/switch-cross-isolated-margin.js
Normal file
22
examples/apidoc/V5/Position/switch-cross-isolated-margin.js
Normal file
@@ -0,0 +1,22 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.switchIsolatedMargin({
|
||||
category: 'linear',
|
||||
symbol: 'ETHUSDT',
|
||||
tradeMode: 1,
|
||||
buyLeverage: '10',
|
||||
sellLeverage: '10',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Position/switch-position-mode.js
Normal file
20
examples/apidoc/V5/Position/switch-position-mode.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.switchPositionMode({
|
||||
category: 'inverse',
|
||||
symbol: 'BTCUSDH23',
|
||||
mode: 0,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
3
examples/apidoc/V5/Spot-Leverage-Token/README.md
Normal file
3
examples/apidoc/V5/Spot-Leverage-Token/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# V5 - REST - Spot Leverage Token
|
||||
|
||||
https://bybit-exchange.github.io/docs/v5/lt/leverage-token-info
|
||||
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getLeveragedTokenInfo('BTC3L')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getLeveragedTokenMarket('BTC3L')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
@@ -0,0 +1,18 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getSpotLeveragedTokenOrderHistory({
|
||||
orderId: '2611',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Spot-Leverage-Token/purchase.js
Normal file
20
examples/apidoc/V5/Spot-Leverage-Token/purchase.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.purchaseSpotLeveragedToken({
|
||||
ltCoin: 'EOS3L',
|
||||
amount: '200',
|
||||
serialNo: 'purchase-001',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Spot-Leverage-Token/redeem.js
Normal file
20
examples/apidoc/V5/Spot-Leverage-Token/redeem.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.redeemSpotLeveragedToken({
|
||||
ltCoin: 'EOS3L',
|
||||
quantity: '200',
|
||||
serialNo: 'redeem-001',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
3
examples/apidoc/V5/Spot-Margin-Trade-(Normal)/README.md
Normal file
3
examples/apidoc/V5/Spot-Margin-Trade-(Normal)/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# V5 - REST - Spot Margin Trade (Normal)
|
||||
|
||||
https://bybit-exchange.github.io/docs/v5/spot-margin-normal/margin-data
|
||||
16
examples/apidoc/V5/Spot-Margin-Trade-(Normal)/borrow.js
Normal file
16
examples/apidoc/V5/Spot-Margin-Trade-(Normal)/borrow.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.spotMarginBorrow({ coin: 'ETH', qty: '10' })
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getSpotMarginBorrowOrderDetail({ coin: 'ETH', limit: 1, status: 2 })
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getSpotMarginBorrowableCoinInfo('ETH')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getSpotMarginInterestAndQuota('ETH')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getSpotMarginLoanAccountInfo()
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getSpotMarginCoinInfo('ETH')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getSpotMarginRepaymentOrderDetail({ coin: 'ETH', limit: 1 })
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Spot-Margin-Trade-(Normal)/repay.js
Normal file
16
examples/apidoc/V5/Spot-Margin-Trade-(Normal)/repay.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.spotMarginRepay({ coin: 'ETH', completeRepayment: 1 })
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.toggleSpotCrossMarginTrade({ switch: 0 })
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
3
examples/apidoc/V5/Spot-Margin-Trade-(UTA)/README.md
Normal file
3
examples/apidoc/V5/Spot-Margin-Trade-(UTA)/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# V5 - REST - Spot Margin Trade (UTA)
|
||||
|
||||
https://bybit-exchange.github.io/docs/v5/spot-margin-uta/switch-mode
|
||||
16
examples/apidoc/V5/Spot-Margin-Trade-(UTA)/set-leverage.js
Normal file
16
examples/apidoc/V5/Spot-Margin-Trade-(UTA)/set-leverage.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.setSpotMarginLeverage('4')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.toggleSpotMarginTrade('0')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
3
examples/apidoc/V5/Trade/README.md
Normal file
3
examples/apidoc/V5/Trade/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# V5 - REST - Trade
|
||||
|
||||
https://bybit-exchange.github.io/docs/v5/order/create-order
|
||||
25
examples/apidoc/V5/Trade/amend-order.js
Normal file
25
examples/apidoc/V5/Trade/amend-order.js
Normal file
@@ -0,0 +1,25 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.submitOrder({
|
||||
category: 'linear',
|
||||
symbol: 'ETHPERP',
|
||||
orderLinkId: 'linear-004',
|
||||
triggerPrice: '1145',
|
||||
qty: '0.15',
|
||||
price: '1050',
|
||||
takeProfit: '0',
|
||||
stopLoss: '0',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
27
examples/apidoc/V5/Trade/batch-amend-order.js
Normal file
27
examples/apidoc/V5/Trade/batch-amend-order.js
Normal file
@@ -0,0 +1,27 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.batchAmendOrders('option', [
|
||||
{
|
||||
symbol: 'ETH-30DEC22-500-C',
|
||||
orderIv: '6.8',
|
||||
orderId: 'b551f227-7059-4fb5-a6a6-699c04dbd2f2',
|
||||
},
|
||||
{
|
||||
symbol: 'ETH-30DEC22-700-C',
|
||||
price: '650',
|
||||
orderId: 'fa6a595f-1a57-483f-b9d3-30e9c8235a52',
|
||||
},
|
||||
])
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
25
examples/apidoc/V5/Trade/batch-cancel-order.js
Normal file
25
examples/apidoc/V5/Trade/batch-cancel-order.js
Normal file
@@ -0,0 +1,25 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.batchCancelOrders('option', [
|
||||
{
|
||||
symbol: 'ETH-30DEC22-500-C',
|
||||
orderId: 'b551f227-7059-4fb5-a6a6-699c04dbd2f2',
|
||||
},
|
||||
{
|
||||
symbol: 'ETH-30DEC22-700-C',
|
||||
orderId: 'fa6a595f-1a57-483f-b9d3-30e9c8235a52',
|
||||
},
|
||||
])
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
39
examples/apidoc/V5/Trade/batch-place-order.js
Normal file
39
examples/apidoc/V5/Trade/batch-place-order.js
Normal file
@@ -0,0 +1,39 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.batchSubmitOrders('option', [
|
||||
{
|
||||
symbol: 'ETH-30DEC22-500-C',
|
||||
orderType: 'Limit',
|
||||
side: 'Buy',
|
||||
qty: '1',
|
||||
orderIv: '6',
|
||||
timeInForce: 'GTC',
|
||||
orderLinkId: 'option-test-001',
|
||||
mmp: false,
|
||||
reduceOnly: false,
|
||||
},
|
||||
{
|
||||
symbol: 'ETH-30DEC22-700-C',
|
||||
orderType: 'Limit',
|
||||
side: 'Sell',
|
||||
qty: '2',
|
||||
price: '700',
|
||||
timeInForce: 'GTC',
|
||||
orderLinkId: 'option-test-001',
|
||||
mmp: false,
|
||||
reduceOnly: false,
|
||||
},
|
||||
])
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
19
examples/apidoc/V5/Trade/cancel-all-orders.js
Normal file
19
examples/apidoc/V5/Trade/cancel-all-orders.js
Normal file
@@ -0,0 +1,19 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.cancelAllOrders({
|
||||
category: 'linear',
|
||||
settleCoin: 'USDT',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
20
examples/apidoc/V5/Trade/cancel-order.js
Normal file
20
examples/apidoc/V5/Trade/cancel-order.js
Normal file
@@ -0,0 +1,20 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.cancelOrder({
|
||||
category: 'linear',
|
||||
symbol: 'BTCPERP',
|
||||
orderId: 'c6f055d9-7f21-4079-913d-e6523a9cfffa',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
21
examples/apidoc/V5/Trade/get-open-orders.js
Normal file
21
examples/apidoc/V5/Trade/get-open-orders.js
Normal file
@@ -0,0 +1,21 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getActiveOrders({
|
||||
category: 'linear',
|
||||
symbol: 'ETHUSDT',
|
||||
openOnly: 0,
|
||||
limit: 1,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
19
examples/apidoc/V5/Trade/get-order-history.js
Normal file
19
examples/apidoc/V5/Trade/get-order-history.js
Normal file
@@ -0,0 +1,19 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getHistoricOrders({
|
||||
category: 'linear',
|
||||
limit: 1,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Trade/get-spot-borrow-quota.js
Normal file
16
examples/apidoc/V5/Trade/get-spot-borrow-quota.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.getSpotBorrowCheck('BTCUSDT', 'Buy')
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
27
examples/apidoc/V5/Trade/place-order.js
Normal file
27
examples/apidoc/V5/Trade/place-order.js
Normal file
@@ -0,0 +1,27 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.submitOrder({
|
||||
category: 'spot',
|
||||
symbol: 'BTCUSDT',
|
||||
side: 'Buy',
|
||||
orderType: 'Market',
|
||||
qty: '0.1',
|
||||
price: '15600',
|
||||
timeInForce: 'PostOnly',
|
||||
orderLinkId: 'spot-test-postonly',
|
||||
isLeverage: 0,
|
||||
orderFilter: 'Order',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
16
examples/apidoc/V5/Trade/set-dcp.js
Normal file
16
examples/apidoc/V5/Trade/set-dcp.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.setDisconnectCancelAllWindow('option', 40)
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
3
examples/apidoc/V5/User/README.md
Normal file
3
examples/apidoc/V5/User/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# V5 - REST - User
|
||||
|
||||
https://bybit-exchange.github.io/docs/v5/user/create-subuid
|
||||
23
examples/apidoc/V5/User/create-sub-uid-api-key.js
Normal file
23
examples/apidoc/V5/User/create-sub-uid-api-key.js
Normal file
@@ -0,0 +1,23 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.createSubUIDAPIKey({
|
||||
subuid: 53888000,
|
||||
note: 'testxxx',
|
||||
readOnly: 0,
|
||||
permissions: {
|
||||
Wallet: ['AccountTransfer'],
|
||||
},
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
21
examples/apidoc/V5/User/create-sub-uid.js
Normal file
21
examples/apidoc/V5/User/create-sub-uid.js
Normal file
@@ -0,0 +1,21 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
key: 'apikey',
|
||||
secret: 'apisecret',
|
||||
});
|
||||
|
||||
client
|
||||
.createSubMember({
|
||||
username: 'xxxxx',
|
||||
memberType: 1,
|
||||
switch: 1,
|
||||
note: 'test',
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user