I use an API to obtain information (Id, Name, Price, Image) from Emotes available on the Roblox page. But I can only obtain information on 30 emotes, and the catalog has much more than 30. How do I obtain information beyond 30?
API:
local URL = "https://catalog.roproxy.com/v1/search/items/details?Category=12&Subcategory=39&salesTypeFilter=1&Limit=30"
In the URL it says “limit=30” (its at the very end) change that to the number you want. If that doesn’t work, then I’m not sure.
local number = 30;
local URL = `https://catalog.roproxy.com/v1/search/items/details?Category=12&Subcategory=39&salesTypeFilter=1&Limit={tostring(number)}`
something like this might work or you can just change it by hand
local URL = "https://catalog.roproxy.com/v1/search/items/details?Category=12&Subcategory=39&salesTypeFilter=1&Limit=100"