How do I get an item’s info like name, itemid, etc. from userassetid? What’s the api endpoint for it?
What do you mean by ‘userassetid’? There’s https://api.roblox.com/marketplace/productinfo?assetId=5857649757 but I’m not sure if that’s what you’re looking for.
Every item has a userassetid, think of it as its own unique id. It’s not the itemid.
The uaid is what roblox uses to tell copies of limiteds apart.
For example, the uaid on my peach thug shades is this
A get request to https://inventory.roblox.com/v1/users/895445660/assets/collectibles?limit=100, yields both the uaid and the actual assetid for all of my items. I was wondering if there was something to do the reverse, query the owner and other item details from the uaid
Can I ask why you need them converted? If I use https://inventory.roblox.com/v1/users/895445660/assets/collectibles?assetType=%s&sortOrder=Asc&limit=100 I can see both the UAID and the name of your peach thug shades.
Rather not specify exactly why I need it, but I need to track certain item copies with a uaid input.
Getting information about a User Asset ID directly is impossible. I’ve tried to find an endpoint a few months back, no results.
The only way you can get information about one is if it’s in a trade you’re in or in a public inventory.
Alright, thanks for your reply.