Roblox.NET
An unofficial asynchronus C# API for interacting with http://api.roblox.com
Install / Use
/learn @REdgars/Roblox.NETREADME
Starting on May 22, 2023, api.roblox.com will be deprecated and no longer be reachable, this means that this project too will not be working anymore.
RobloxNET
An unofficial asynchronus C# API for interacting with http://api.roblox.com
Features
- Get group information.
- Get marketplace product information.
- Get an user's friends information.
- Get an user's information.
- Read the wiki for all features.
Code Examples
Getting information of a group
using (RobloxGroups robloxGroups = new RobloxGroups())
{
RGroup rGroup = await robloxGroups.GetGroupInfoAsync(1234567890);
Console.WriteLine("Name: {0}", rGroup.Name);
Console.WriteLine("First role: {0}", rGroup.Roles[0].Name);
Console.WriteLine("Owner: {0}", rGroup.Owner.Name);
}
Getting information of a product in the marketplace
using (RobloxMarketplace robloxMarketplace = new RobloxMarketplace())
{
RProductInfo productInfo = await robloxMarketplace.GetProductInfoAsync(123456789);
Console.WriteLine("AssetId: {0}", productInfo.AssetId);
Console.WriteLine("Price: {0}", productInfo.PriceInRobux);
Console.WriteLine("Creator: {0}", productInfo.Creator.Name);
}
Getting an users information
using (RobloxUsers robloxUsers = new RobloxUsers())
{
RUser rUser = await robloxUsers.GetUserAsync(123456789);
RUser rUser2 = await robloxUsers.GetUserAsync("username");
Console.WriteLine("Username: {0}", rUser.Username);
Console.WriteLine("Id: {0}", rUser2.Id);
}
<!-- Markdown link & img dfn's -->Related Skills
node-connect
339.5kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
83.9kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
339.5kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
83.9kCommit, push, and open a PR
