How to check a user's inventory on the website?

Hello! I’m trying to check a users inventory, to do autoranking for my clothing group!

I’ve got everything set up apart from checking the users inventory, to see how many clothes of the group they’ve purchased! I’m doing this mainly on http requests, and have found this but can’t make much sense of it, here

Can anyone inform me how to use it? I can’t seem to understand it well, particularly the assetTypes part. Thanks in advance!

maybe Avatar Editor Service | Roblox Creator Documentation

unfortunately, i’m looking for a http-based solution so this wouldn’t work for me

https://avatar.roblox.com/docs#!/Avatar/get_v1_users_userId_avatar
https://avatar.roblox.com/docs#!/Avatar/get_v1_users_userId_currently_wearing

This is likely what you’re looking for.

sadly it isn’t as that’s just avatar and not the inventory of the player

I think you have to be logged in the users account and then send this request https://avatar.roblox.com/v1/recent-items/All/list

Thanks for the response! However, i’m looking for a solution for those who do not have private inventories as you could imagine, asking to log into a user’s account would be against many terms of conditions and the user would never do so

https://inventory.roblox.com/docs#/

https://inventory.roblox.com/docs#!/Assets/get_v2_assets_assetId_owners

Then you need to use the above API endpoint (will work as long as you own the asset/or the group the asset belongs to).

Here’s a sample request, change the “1” to whatever assetId you want to the check the owners of.
https://inventory.roblox.com/v2/assets/1/owners?sortOrder=Asc&limit=100