How to get info about an item on the catalog in game

Hey there, I’m trying to make a script that gets info about an item on the catalog using its asset id.
I tried looking into APIs and found this: (Image below) and I know ill have to use a proxy to get the information but I’m not sure how to. And I also noticed it doesnt have any information about the image of the item so is there another way its possible to get the image and price in robux of an item??

Thanks for all the help!

API I found:
image

1 Like

Pretty sure this is just:

local MarketplaceService = game:GetService("MarketplaceService")

local assetId = 0

 -- Be warned, this errors with an invalid asset ID (pcall recommended):
print(MarketplaceService:GetProductInfo(assetId))

Thanks, I’ll give it a try after eat some food. :slight_smile:

Hey, sorry for the wait.

It works fine and all but the only thing is it shows the original price for limiteds not the current price. I’m guessing there’s no way to see the current price?

There’s definitely a way, especially if websites like Rolimon’s are able to show such statistics on collectibles/limiteds.

With a little bit of searching, you could probably find the API endpoint for that information.