BrazilianGuy 0 Api https://api.roblox.com/users/20000 https://api.roblox.com/users/ (aleatory or range number) Api is proxyless. Sorry for my bad english ;) Quote Share this post Link to post Share on other sites
ForlaxPy 161 c#: using Leaf.xNet; using Newtonsoft.Json; int robloxID = 178060881; for (int i = 1; i < robloxID; i = i + 2) { try { using (var request = new HttpRequest()) { request.UserAgent = Http.ChromeUserAgent(); HttpResponse response = request.Get("https://api.roblox.com/users/" + i); string content = response.ToString(); dynamic json = JsonConvert.DeserializeObject(content); string username = json.Username; Console.WriteLine("USERNAME SCRAPPED: " + username); File.AppendAllText(fileRand3, username + Environment.NewLine); } } catch { } } Quote Share this post Link to post Share on other sites