Skip to content

A simple C# .NET implementation of the CurseForge API

License

Notifications You must be signed in to change notification settings

Raxdiam/CurseForge.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A simple C# .NET implementation of the CurseForge API

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages