Hello, so I’m making a game related to catalog items and I came across an issue.
Whenever I try to send a POST api request to (linked below), it returns me a response code 403 (Forbidden) [catalog.roproxy.com/v1/catalog/items/details](https://catalog.roproxy.com/v1/catalog/items/details)
Does anyone know what could be the possible solution, or we if I could do it in any other way?
i dont think it is actually possible to use HttpService to make requests to the catalog api, even with a proxy.
instead, you can use the built in MarketplaceService to get the details of an item from the id.
local MarketplaceService = game:GetService("MarketplaceService")
local assetId = 417457461 -- Replace with your actual ID
-- If you are actually using :GetProductInfo, you should pcall it
print(MarketplaceService:GetProductInfo(assetId))
this returns a huge dictionary of the product info for the item.
you can view documentation for it here