JavaScript
Node.js
A high-level wrapper providing streamlined access to Rolimons data, enabling developers to build applications that integrate detailed item statistics, track market activity, and retrieve information on players, groups, and games.
Using the API wrapper is simple. Here’s an example to search for an item by name:
const rolimons = require("rolimons");
rolimons.items.searchItem("name", "SSHF").then((item) => {
if (!item) return;
console.log(item);
});