Getting the price of an asset on the avatar shop

How would I get the price of an asset from the roblox catalog in roblox studio?

With GetProductInfo and PriceInRobux

game:GetService("MarketplaceService"):GetProductInfo(ID).PriceInRobux
3 Likes

What would I use if I were to create a table with all the limited item prices from the roblox catalog?
How do I get the prices of all the limiteds on roblox with their name?

You would use this api to get all the top limited items:
https://inventory.roblox.com/v1/users/1/assets/collectibles?assetType=Hat&sortOrder=Asc&limit=100

But, you are unable to access the roblox api via roblox scripts so you have to create a custom webserver and run it which will return what the apis would normally return.

1 Like