Help with API that obtains information about catalog items

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"

When I change the value to 100 I get this error:

HTTP 400 (Bad Request) 

By default this is the same as what’s currently shown on each catalog browse page. You can’t specify a value larger than this maximum amount.

Number of results to return. Values are currently limited to 10, 28, and 30.

Is what the roblox documentation says, maybe you can find some other method

Right. Is it possible to get emotes using AvatarEditorService?