local HttpService = game:GetService("HttpService")
local URL_ASTROS = "https://catalog.roproxy.com/v1/search/items/details?Subcategory=5&CreatorTargetId=1&Limit=10"
-- Make the request to our endpoint URL
local response = HttpService:GetAsync(URL_ASTROS)
-- Parse the JSON response
local data = HttpService:JSONDecode(response)
print(data[1])
local HttpService = game:GetService("HttpService")
local URL_ASTROS = "https://catalog.roproxy.com/v1/search/items/details?Subcategory=5&CreatorTargetId=1&Limit=10"
-- Make the request to our endpoint URL
local response = HttpService:GetAsync(URL_ASTROS)
-- Parse the JSON response
local data = HttpService:JSONDecode(response)
print(data.data[1])