CurseForge.NET
August 27, 2022 ยท View on GitHub
A simple C# .NET implementation of the CurseForge API
Usage
This library closely follows the official documentation for the API (https://docs.curseforge.com/).
Example
internal class Program
{
private static async Task Main()
{
var client = new CurseForge("<your_api_key>");
var games = await client.GetGames();
foreach (var game in games.Data) {
Console.WriteLine(game.Name);
}
}
}