Is there currently an API to view the resellers of a limited item?

I’ve been searching around and looking through the different APIs available and can’t seem to find one that’s active and returns the resellers list of a limited item. Is there any way I can get the list of resellers?

1 Like

https://economy.roblox.com/docs#!/Resale/get_v1_assets_assetId_resellers
https://economy.roblox.com/v1/assets/ASSET_ID/resellers

example:

https://economy.roblox.com/v1/assets/64082730/resellers

3 Likes

Oh wow, honestly didn’t think to check that one. Passed over that one like 5 times lol. Thanks!

If you need a quick way to see all the APIs you can try:

https://api.roblox.com/docs?useConsolidatedPage=true

For some reason that page does not work anymore? Couild just be me.

I made a quick page on my github page’s site to list all of the API’s links since that does not work anymore. https://basedonwhat.github.io/roblox

APIs

https://abtesting.roblox.com/docs

https://accountinformation.roblox.com/docs

https://accountsettings.roblox.com/docs

https://adconfiguration.roblox.com/docs

https://ads.roblox.com/docs

https://api.roblox.com/docs

https://assetdelivery.roblox.com/docs

https://auth.roblox.com/docs

https://avatar.roblox.com/docs

https://badges.roblox.com/docs

https://billing.roblox.com/docs

https://captcha.roblox.com/docs

https://catalog.roblox.com/docs

https://cdnproviders.roblox.com/docs

https://chat.roblox.com/docs

https://chatmoderation.roblox.com/docs

https://clientsettings.roblox.com/docs

https://contacts.roblox.com/docs

https://contentstore.roblox.com/docs

https://develop.roblox.com/docs

https://discussions.roblox.com/docs

https://economy.roblox.com/docs

https://economycreatorstats.roblox.com/docs

https://engagementpayouts.roblox.com/docs

https://followings.roblox.com/docs

https://friends.roblox.com/docs

https://gameinternationalization.roblox.com/docs

https://gamejoin.roblox.com/docs

https://gamepasses.roblox.com/docs

https://gamepersistence.roblox.com/docs

https://games.roblox.com/docs

https://groups.roblox.com/docs

https://groupsmoderation.roblox.com/docs

https://inventory.roblox.com/docs

https://itemconfiguration.roblox.com/docs

https://locale.roblox.com/docs

https://localizationtables.roblox.com/docs

https://metrics.roblox.com/docs

https://notifications.roblox.com/docs

https://points.roblox.com/docs

https://premiumfeatures.roblox.com/docs

https://presence.roblox.com/docs

https://privatemessages.roblox.com/docs

https://publish.roblox.com/docs

https://punishments.roblox.com/docs

https://share.roblox.com/docs

https://textfilter.roblox.com/docs

https://themes.roblox.com/docs

https://thumbnails.roblox.com/docs

https://thumbnailsresizer.roblox.com/docs

https://trades.roblox.com/docs

https://translationroles.roblox.com/docs

https://translations.roblox.com/docs

https://twostepverification.roblox.com/docs

https://usermoderation.roblox.com/docs

https://users.roblox.com/docs

https://voice.roblox.com/docs

1 Like

This will come in handy in the future. Thanks man, really appreciate it. :slight_smile:

One thing I’m noticing with this API is it can’t be accessed with a proxy. Is there a way around this?

I don’t see why it would not be accessible from a proxy?

The API just requires authorization. You should be able to pass a roblox security cookie with the web request.

Just make an alt account and copy its cookie from storage.

When I send a request to it through a proxy it returns an error “DnsResolve”. I tested another API to make sure it wasn’t just the proxy and it worked just fine. Seems to just be this API.

I rarely work with APIs, how do I send a cookie with the request?

I don’t think sending a cookie will fix the issue. We could try though. (I’ve never had this issue…)

What language are you working with? JS? Python?

I’m attempting to access the API in Roblox so Lua.

I don’t think ROBLOX’s http service allows you to pass cookies directly in the headers, but I’m not sure.

You could try using HttpService:RequestAsync

And having a Cookie key with a string for the key and value of the roblox security token. (I highly suggest making an alt and using its token, especially if the proxy you’re using is not yours)

Doesn’t seem to work. I find it odd that this API can’t be accessed in-game.