Roproxy restricting access to certain roblox apis

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!

i’d like to get a player information to make a game of which players can showcase their account age, collectibles etc

  1. What is the issue? Include screenshots / videos if possible!
    currently, im using the roproxy api to handle requests such as getting a plrs join date, follower count etc however there’s a lot of things of which i would like to access but it’s giving me the HTTP 401 (Unauthorised) error, how would i go about resolving this, would it be best to host my own proxy server?
    This is the api link i’ve been using; “https://inventory.roproxy.com/v1/users/278723686/assets/collectibles?limit=10&sortOrder=Asc”, it’ll work if i change roproxy to roblox but i’ve found out u cannot access the roblox api in-game

  2. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    currently i’ve tried deep diving more research about roproxy and the latest roblox api changes (it becoming private in 2021-2023?)
    i’ve been also looking for alternatives to roproxy but can’t seem to find any, any help/advice on alternatives/self hosting would greatly be appreciated or if there is an easier way to access players collectible items/follower count

I currently have a followers api, but sadly, the different inventory api’s are broken.
I’ve tried both V1 and V2.
All of them are telling me about unknown asset types.

https://api.newstargeted.com/roblox/users/v1/followers.php?request=followings&userId=4309939&limit=100&sortOrder=Desc

Private inventory:
https://api.newstargeted.com/roblox/assets/v1/inventory.php?userId=4309939&assetType=10&limit=10&sortOrder=Asc
Public inventory:
https://api.newstargeted.com/roblox/assets/v1/inventory.php?userId=2722435&assetType=10&limit=10&sortOrder=Asc

For self-hosting, consider looking into Cloudflare Workers. It allows you to make 100k/day requests for free which is more than enough. It looks pretty promising and learning Javascript for this is worth it.

The main problem here isn’t hosting, it’s that roblox has broken the apis.

i dont think they exactly have, it’s more roproxy requests than the roblox api, i’ve a github an most if not all roblox api’s are working but yea it seems ill need to resort to self hosting, here’s the github to all roblox apis that seem to be working, i have only found 1 or 2 that dont seem to be but the inventory 1 is definitely working