steamAPI

0.0.1 • Public • Published

steamAPI

Steam Web API for node

A Steam API Key is needed to use this module.

To install:

npm install steamAPI

To use:

var steam = require('steamAPI').configure('yourSteamAPIKey');

//Returns a JSON object of Robin Walker's TF2 Backpack
steam.getPlayerItems(console.log); 

All methods accept an optional object for parameters, and require a callback function.

steam.getPlayerItems({
  format: 'json',               // default - ['json', 'xml', 'vdf']
  gameid: '440',                // default - see valve documentation for more gameids
  steamid: '76561197960435530', // default -  Robin Walker's steam id <3
  version: '0001'               // default
}, console.log);                // function(err, result){}

Specify Default Settings

You can change all of the default settings when initializing the module.

var steam = require('steamAPI').configure({
  format: 'json',
  steamid: '76561197960435530',
  steamids: ['76561197960435530'],
  gameid: '440',
  appid: '440',
  count: '5',
  language: 'en',
  maxlength: '300',
  version: '0001'
}, 'yourSteamAPIKey');

Supported methods

  • getNewsForApp
  • getGlobalAchievementPercentagesForApp
  • getPlayerSummaries
  • getPlayerItems
  • getSchema

getPlayerSummaries

This method uses an array of 64bit Steamids in the query. The Steam Web API limits the request to 100 steamids.

steam.getPlayerSummaries({
  steamids: ['76561197960435530']
}, console.log);

Please Note

By default, all methods will use version 0001. Currently the Steam Web API (non-TF2) methods support version 0002. To use the newest version please specify within the parameter object.

steam.getNewsForApp({
  appid: '440',
  version: '0002'
}, console.log);

Readme

Keywords

none

Package Sidebar

Install

npm i steamAPI

Weekly Downloads

3

Version

0.0.1

License

none

Last publish

Collaborators

  • brainss