/steamapi

Unofficial Node.JS wrapper for steamapis.com

Primary LanguageJavaScript

SteamAPI Node.JS Plugin

NPM

Contribution

If you notice something that can be improved, please open a pull request!

Instructions

  1. Install this plugin:
npm i @nnzo/steamapi
  1. Import it in your code:
import SteamAPI from '@nnzo/steamapi'
  1. Use it!
const api = new SteamAPI('API_KEY_HERE')

async function main() {
  let item = await api.getItem(730, "AK-47 | Redline (Field-Tested)")
  console.log(item)

  let items = await api.getItems(730)
  console.log(items)
}