Roblox API help

I would like to receive all the player’s assets that a certain user has uploaded. (Even on groups) I am specifically looking for all the clothing they have uploaded anywhere. Is there a certain API that I have to use on Roblox? I am using HTTPS Library in NodeJS.

I don’t know any of the API, but what i would suggest is, checking the structure of the HTML of roblox’s page.


Here you can loop through each element of class ‘creator-name text-overflow text-link ng-binding’. do some checks, see if the href or the name corresponds to the user in question.

From there you can store the data in array for further use, make sure to check pants, t-shirts, accesories etc too.

Thank you for the input. I will try this.