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.
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
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.
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
NOTE: this only works with UGC collectible.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.