feat(): added missing API examples
This commit is contained in:
@@ -3,7 +3,7 @@ const { RestClientV5 } = require('bybit-api');
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
// linear
|
||||
client
|
||||
.getInstrumentsInfo({
|
||||
category: 'linear',
|
||||
@@ -15,3 +15,29 @@ client
|
||||
.catch((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,
|
||||
});
|
||||
|
||||
// inverse
|
||||
client
|
||||
.getTickers({
|
||||
category: 'inverse',
|
||||
@@ -15,3 +16,31 @@ client
|
||||
.catch((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);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user