How to work with roblox API Response

Hello!
I’m using a proxy to use roblox API but when I use it:


This will returns, So I don’t know how to use it or get specific data
Thank for any help!

If you could be more specific it would help greatly. Since all I cay say is when APIs return data it is often formatted into a tables. These tables may contain more tables inside of them depending on what API you use. It’s helpful to reference the API page so you can understand how the API will return the data.

You have to check the Content-Type header and then parse the data accordingly.

Using HttpService:JSONDecode might work? It transforms JSON objects or arrays into Lua tables.

1 Like