Having trouble getting HttpService to parse code

In the image above is my code which I’m trying to use to generate the gears on the catalog. When copying and pasting the link/url into the search bar online it gives results, but in studio, I get the error:

image

If someone could help me get this to work or explain to me what I’m missing, please let me know.

Here is the code below:

HttpService:GetAsync(HttpService:JSONDecode("https://catalog.roproxy.com/v1/search/items/details?Subcategory=5"))

You’re doing this backwards:

HttpService:JSONDecode(HttpService:GetAsync("https://catalog.roproxy.com/v1/search/items/details?Subcategory=5"))

You were trying to use decode for the url and not the content

1 Like

Alright, I switched around the two and a new error appeared, any idea on what it means?
I didn’t see much of an explanation on the internet or devforums.
image

Not sure what SslConnectFail means, but from what I quickly saw on google, it could have something to do with your internet or something on the proxy’s end

1 Like

turns out it was my internet, lol. I’ve always had awful internet, so it explains a lot. Thanks!