Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 616 Bytes

File metadata and controls

24 lines (19 loc) · 616 Bytes

CurseForge.NET

A simple C# .NET implementation of the CurseForge API

Nuget

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);
        }
    }
}