I’ve been searching for about an hour now, and I can’t figure out how to get the recent average price of an item, I was able to get info through the Marketplace/ProductInfo API, however, this wouldn’t even give me the amount of Robux the item was selling for. I then tried getting the information from Rolimons but I kept being denied access, is there a way around this? (I am developing this in .NET C#)
class Program
{
public static string ItemURLFormat = "https://www.rolimons.com/Item/{0}";
private readonly HttpClient client = new HttpClient();
static async Task Main(string[] args)
{
Program program = new Program();
await program.GetItemDataAsync(itemId: 4390875496);
}
private async Task GetItemDataAsync(long itemId)
{
string url = String.Format(ItemURLFormat, itemId.ToString());
Console.WriteLine(url);
string response = await client.GetStringAsync(url);
Console.WriteLine(response);
Console.ReadLine();
}
}