Rendering a player's outfits through endpoint

Hello I’m trying to render a player’s different outfits that you can grab from the following endpoint:

https://avatar.roblox.com/v1/users/{USERID}/outfits

What would be the best way of doing such? Will I have to build my own renderer or is there another method?

I’ve found the answer, thank you ChatGPT for getting me in the right direction.
For others attempting to do the same here’s how to do it:

  1. Get user’s outfit ids
https://avatar.roblox.com/v1/users/{USERID}/outfits
  1. Get a user Outfit id and grab the thumbnail thumbnails endpoint
https://thumbnails.roblox.com/v1/users/outfits?userOutfitIds={OUTFITID},0&size=150x150&format=Png&isCircular=false

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.