title essentially says what im looking for, essentially asking if there is a roblox function which can do similar to the https://catalog.roblox.com/v1/catalog/items/details api endpoint where you can input a table of items and receive the details for all of them. (I am not looking to receive the data 1 item at a time so MarketplaceService:GetProductInfo() and similar are not of interest to me)
maybe if im not wrong, that is json table/data. you could decode the data using HttpService. HttpService:JSONDecode(data)
yea ive used the endpoint and tested it myself however when too many servers are open since im gonna have to be using a proxy to access the api from ingame im worried that itd get ratelimited hence why im wondering if theres an official function which i could use
You’re just going to have to add in some validates for the rate limit. Even if there was an official API you would still get rate limited.
Believe that would be a rate limit per server though on a server script, not a rate limit to a specific ip on the proxy which would be getting requests for every server of the whole game, hence why id much prefer an official api for it