Sorry if this is in the wrong topic, but what I’m trying to do is get stuff like the RAP, best price, etc.
I’ve already checked out https://roblox.com/asset/20573078/sales-data but that brings me to an error page for some reason.
Sorry if this is in the wrong topic, but what I’m trying to do is get stuff like the RAP, best price, etc.
I’ve already checked out https://roblox.com/asset/20573078/sales-data but that brings me to an error page for some reason.
Have you tried the Roblox+ Chrome Plugin? They show information regarding limiteds.
Can’t access the link. (30 chars)
Gotta do MarketplaceService
local id = 1234567890
local asset = game:GetService("MarketplaceService"):GetProductInfo(id)
print(asset.Name)
print(asset.Sales)
print(asset.Created)
print(asset.Description)
print(asset.IsLimited)
print(asset.IsLimitedUnique)
print(asset.Remaining)
if asset.PriceInRobux == nil or asset.PriceInRobux == 0 then
print("N/A")
else
print(asset.PriceInRobux)
end
hope it helped
I think OP is talking about Game Development. Like how you can show RAP ingame, for example: trade hangout
Thank you for your reply! However what I’m looking for is a JSON page that contains that data.
Oh…
Use this link: https://api.roblox.com/Marketplace/ProductInfo?assetId=4390890198
replace the id at the end with the item id
I’ve already checked that out, it does not provide the average price or best price.
As far as I’m aware, there isn’t really a way to check that other than on the item page, the API doesn’t cover it