How to make music search

i would be using this > External Catalog Queries | Roblox Creator Documentation

i think this url is what i would use https://search.roblox.com/catalog/json?CatalogContext=2&Category=9&SortType=0&ResultsPerPage=20

im not sure how to even begin. I dont understand how the code should even start and how the items would be returned and how i could go through them and put them in a scrolling frame

thanks for any help✌️

1 Like

Well first you can’t use the Roblxo API directly like that, so you would have to use RoProxy.com.

So first you’re frame should have a UIListLayout so the items are listed and the code should go like this:

local HTTPService = game:GetService("HttpService")
local url = "https://search.roproxy.com/catalog/json?CatalogContext=2&Category=9&SortType=0&ResultsPerPage=20" -- url but with the proxy
local result = HTTPService:GetAsync(url) -- get the returned table

-- then here you could make a loop to make a button for each result
-- where you could set result[i].Name as the button.Name and add an attribute 
-- with button:setAttribute("id", result[i].AssetId)

Hope this helped!

2 Likes