Database/Website for users informations

Hello I would like to know if there is another website to get informations from Players ID, I used to get information from api.roblox.com or users.roblox.com but I am getting an error about that request, they don’t allow GET request on their websites.

local URL = "https://api.roblox.com/users/"..ID

3 Likes

Be warned, this is a public proxy and should generally not be used for production purposes: api.roproxy.com, users.roproxy.com

2 Likes

What do you mean; and thanks btw.

They mean you can use the two URL’s he referenced instead of api.roblox.com and users.roblox.com. These act as a proxy so you can use them from HttpService. You should avoid using public proxies in production (your live game) as, while I’m not saying they will, could be modified to be malicious or have unexpected outages which may impact your game.

3 Likes

You can’t send requests to Roblox web APIs, but you can send it to a proxy and have that send your requests to the APIs, and forward the responses to you.
It’s a middleman, basically.

Someone’s advised you not to use public proxies (and for good reason), but some proxies are open source, allowing you to host them yourself.

Give that a shot.

2 Likes

I probably should’ve added this to my point instead of making public proxies out to be evil. :laughing:

2 Likes

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