Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How could I get data from limiteds?

Asked by 5 years ago

How could I get data from limiteds? I'm trying to get the items for sale on a specific limited And check if mine is the lowest, if not then notify me

0
(meant for use outside of a roblox game) PossibIy 10 — 5y

2 answers

Log in to vote
0
Answered by 5 years ago
0
He means see the listings for the item. Hexcede 52 — 5y
Ad
Log in to vote
0
Answered by
EgoMoose 802 Moderation Voter
5 years ago

I assume that you are referring more about the current sellers of limiteds.

To do this you need to send the following request:

local assetId = 1560601706; -- example: https://www.roblox.com/catalog/1560601706/Counterfeit-Domino-Crown
local startIndex = 0;
local maxRows = 20;
-- note the productId is required, not the assetId
local productId = game:GetService("MarketplaceService"):GetProductInfo(assetId).ProductId;
local requestLink = string.format("https://assetgame.roblox.com/asset/resellers?productId=%d&startIndex=%d&maxRows=%d", productId, startIndex, maxRows);
-- unfortunately we can't use the http service to make requests to roblox domains so paste result into your browser address bar to see result
print(requestLink);

That's the jist of it...

0
Btw I meant for this to be used outside of a roblox game PossibIy 10 — 5y
0
Well this is still the answer just use get with jQuery or whatever... EgoMoose 802 — 5y

Answer this question