If you notice something that can be improved, please open a pull request!
- Install this plugin:
npm i @nnzo/steamapi
- Import it in your code:
import SteamAPI from '@nnzo/steamapi'
- 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)
}