Gear search using Catalog API?

Hello,

I am trying to make a gear search function for my app. I’m following the Catalog API documentation, however, the example endpoints do not work.

Let’s take this one, it’s for searching up gears. Going to this endpoint renders an error:

{"errors":[{"code":1,"message":"Category subcategory selection not supported.","userFacingMessage":"Something went wrong"}]}

What??? Is there news that I (and the documentation author) missed?
I am aware that this endpoint exists, however, I’d prefer to send a single request to get all of the gears’ information, instead of one-by-one.

Please aid me in this quest of finding a working way to search up gears! :slight_smile:

1 Like

Try submitting multiple items in this endpoint from Catalog Api :

post https://catalog.roblox.com/v1/catalog/items/details 

Currently, this example is shown:

{
  "items": [
    {
      "itemType": "Asset",
      "id": 0
    }
  ]
}

"items" is a JSON array, you should try sending multiple items there.

Is there a maximum limit to the amount of assets to query?

not home currently so cant test

I don’t think so, some games have so many accessories with a code similar to that provided by @FieryEvent