Roblox Catalog API - &ResultsPerPage not working as intended; giving less results

I use this API endpoint: "https://catalog.roblox.com/v1/search/items/details?Category=11&Subcategory=19&CreatorName="..tostring(game.Players:GetNameFromUserIdAsync(UserID)).."&salesTypeFilter=1&IncludeNotForSale&cursor="

I know the line doesn’t have the ‘&ResultsPerPage’ parameter, but even if I do add it in, it still sends in a total of 10 scanned items per page. How do I increase the number? I need the scan to last less, but it takes forever with that throttle speed.

Thanks!

1 Like

updated the title to be more understandable with the post’s meaning

The catalog search API does not take in a ResultsPerPage parameter, it takes in limit: "https://catalog.roblox.com/v1/search/items/details?Category=11&Subcategory=19&CreatorName="..tostring(game.Players:GetNameFromUserIdAsync(UserID)).."&salesTypeFilter=1&IncludeNotForSale&cursor=&limit=30"

1 Like

Let me try that real quick, just a second.

Also, is 30 the max limit?

Seems that 30 is the max limit, yeah. But it works! Thanks a lot.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.