Is there any way to scrape data from roblox.com

I am using typescript for this, and for the framework I use next.js if anyone is wondering
what is that: scraping is when you take data from a webpage and add it into your code as a variable

Well yes, it is possible although what specific data are you after?

user profiles, group lists, game stats, assets

EDIT;

Roblox actually exposes a bunch of Web API endpoints e.g.; (groups, users, games)
that are better than scraping :cool:

Although, Note;

1 Like

The legacy APIs are actually more supported than they used to be. We’ve moved their docs over to the main site and are working to add API key and/or OAuth authentication to as many as we can, though most of the legacy APIs still rely on cookies. You can get the full summary of our cloud APIs here, including which ones support API keys: Cloud API reference | Documentation - Roblox Creator Hub

2 Likes

Thank you so much for the clarification!