This is a node module for interacting with the market.csgo.com API. Docs for endpoints are available here
npm install market-csgo-api
const MarketAPI = require('market-csgo-api');
const api = new MarketAPI(options);
or
import MarketAPI from 'market-csgo-api';
Params:
options[apiKey]
: your API key requiredoptions[baseUrl]
: url to API. Default:https://market.csgo.com/
.options[apiPath]
: relative path to API. Default:api
.options[extendedError]
: Should module return full response and got options on market error. Default:false
.options[useLimiter]
: enable bottleneck limiter. Default:true
.options[gotOptions]
: options for got module that would be applied for all API-call methods (except static). Default:{}
.options[defaultGotOptions]
: default options for got module for all API-call methods withoutgotOptions
param(except static). Default:{}
.options[limiterOptions]
: options for bottleneck limiter. Default:
{
maxConcurrent: 1,
minTime: 200,
highWater: -1,
strategy: Bottleneck.strategy.LEAK,
rejectOnDrop: true
}
options
: merged object of your passed options and default onesapiUrl
: composed api url from base url and api path
defaultAppId
: CS:GO Steam AppId - 730defaultBaseUrl
:https://market.csgo.com/
LANGUAGES
: languages, supported by csgo.tmCREATE_TRADE_REQUEST_TYPE
: available types of trade requestsMASS_INFO_SELL_BUY
: available types of 'SELL' and 'BUY' param in 'MassInfo' requestMASS_INFO_HISTORY
: available types of 'HISTORY' param in 'MassInfo' requestMASS_INFO_INFO
: available types of 'INFO' param inMassInfo
requestDEFAULT_MASS_INFO_PARAMS
: default params that will be substituted, when you did not provide some of them
All API-call methods return Promise, and they have gotOptions
param for got module
All methods are divided into blocks with a special prefix (except static) like in docs
account
item
sell
buy
order
notification
search
quick
additional
requestJSON(url, gotOptions)
dbName(appId, baseUrl, gotOptions)
itemDb(dbName, baseUrl, gotOptions)
currentItemDb(appId, baseUrl, gotOptions)
history(baseUrl, gotOptions)
getItemIds(item, asNumbers)
formatItem(item, symbol)
Many of methods require item
in the params. It should be an object with properties:
i_classid
orclassid
orclassId
i_instanceid
orinstanceid
orinstanceId
orui_real_instance
const MarketAPI = require('market-csgo-api');
const instance = new MarketAPI({apiKey: 'xxxx'});
(async () => {
let trades = await instance.accountGetTrades();
})()