How do you get the resellers list of a UGC Limited?

I tried using https://economy.roblox.com/v1/assets/88885069/resellers , but it says “Something Went Wrong” whenever I input the ID of a UGC Limited.

1 Like

Well, in order to access resellers of a limited item, authorization is required. However, it is currently impossible to add authorization (cookie) in headers because Roblox automatically logs you out if such authorization is detected.

Furthermore, it’s worth noting that the cookie changes with each login session, making it even more challenging to maintain a consistent authorization for accessing resellers.

The only solution to this problem is login with same IP, this means login with any account on a server then use that same server to post/get request from https://economy.roblox.com/v1/assets/88885069/resellers

1 Like

The authorization part is easy, the only issue is that I can’t get resellers of a UGC Limited. Normal limited made by Roblox work, but UGC limiteds don’t.

1 Like

Okay so, first send GET request to
https://catalog.roblox.com/v1/catalog/items/<ASSET_ID>/details?itemType=Asset

then get the collectibleItemId and then send GET request to

https://apis.roblox.com/marketplace-sales/v1/item/<CollectibleitemID>/resellers?limit=100

Example:

https://catalog.roblox.com/v1/catalog/items/13013084262/details?itemType=Asset

https://apis.roblox.com/marketplace-sales/v1/item/46568bc3-420a-4c58-916b-3f302124d7e8/resellers?limit=100

NOTE: this only works with UGC collectible.

1 Like

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