https://api.smartshop.gg/
This documentation helps you to interact with the Smartshop API very easily.
Usability, consistency, and performance are key focuses of the Smartshop API.
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function() {
if(this.readyState === 4) {
console.log(JSON.parse(this.responseText));
}
});
xhr.open("GET", "https://api.smartshop.gg/product/API_KEY/123456");
xhr.send();
Welcome to the Smartshop.gg™ API documentation.
This documentation helps you to interact with the Smartshop API very easily.
If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official Smartshop.gg™ Server.
api/product
Retrieve a product by ID or name.
https://api.smartshop.gg/product/API_KEY/ID
{
id:123456,
price:10,
product:"My Great Product",
texture:"f6af7fc6-ddd5-3e9f-2ff7-f165024b36ca",
merchant:"babb50c6-af3c-452b-82b2-1789343a5712",
version:1.2,
permissions:{
modify:false,
copy:true,
transfer:false
},
status:"OK"
}
Documentation built at Sat, 08 Apr 2021.