Modrinth.Net 3.1.0-rc3

This is a prerelease version of Modrinth.Net.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Modrinth.Net --version 3.1.0-rc3
NuGet\Install-Package Modrinth.Net -Version 3.1.0-rc3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Modrinth.Net" Version="3.1.0-rc3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Modrinth.Net --version 3.1.0-rc3
#r "nuget: Modrinth.Net, 3.1.0-rc3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Modrinth.Net as a Cake Addin
#addin nuget:?package=Modrinth.Net&version=3.1.0-rc3&prerelease

// Install Modrinth.Net as a Cake Tool
#tool nuget:?package=Modrinth.Net&version=3.1.0-rc3&prerelease

Modrinth.Net

GitHub Nuget Nuget (with prereleases) Modrinth API

Usage

using Modrinth;

var options = new ModrinthClientConfig 
{
    // Optional, if you want to access authenticated API endpoints
    ModrinthToken = "Youre_Authentication_Token",
    // For Modrinth API, you must specify a user-agent
    // There is a default library user-agent, but it is recommended to specify your own
    UserAgent = "MyAwesomeProject"
};

var client = new ModrinthClient(options);

var project = await client.Project.GetAsync("sodium");

Console.WriteLine(project.Description);

User-Agent

  • You can also use the UserAgent class to help you create a valid user-agent
  • User-Agent currently cannot be changed after the client has been created
  • More info about the User-Agent can be found here
using Modrinth;

// Note: All properties are optional, and will be ignored if they are null or empty
var userAgent = new UserAgent
{
    ProjectName = "ProjectName",
    ProjectVersion = "1.0.0",
    GitHubUsername = "Username",
    Contact = "contact@contact.com"
};

var options = new ModrinthClientOptions
{
    UserAgent = userAgent.ToString()
};

var client = new ModrinthClient(options);
  • You can search for projects using the SearchAsync method, in the Project endpoint
using Modrinth;

var client = new ModrinthClient(userAgent: "My_Awesome_Project");

var search = await client.Project.SearchAsync("sodium");

foreach (var project in search.Projects)
{
    Console.WriteLine(project.Title);
}
Search with facets/filtering
  • You can filter the search results by using facets, which are a way to filter the results by certain criteria
  • You can read more about facets here
  • You can create a FacetCollection and add facets to it, and then pass it to the SearchAsync method

Example:

// For search with facets, you first need to create a FacetCollection
var facets = new FacetCollection();

// Then you can add facets to it
// You add a facet by calling the Add method on the FacetCollection
// In one call, you can add multiple facets, they will be combined in an OR statement
// If you call Add again, the new facets will be combined in an AND statement with the previous ones

// Example:
facets.Add(Facet.Category("adventure"), Facet.Version("1.19.3"));
facets.Add(Facet.Category("magic"));

// This will create a query that looks like this:
// (category:adventure OR version:1.19.3) AND category:magic

// Then you can pass the FacetCollection to the SearchAsync method
var search = await _client.Project.SearchAsync("", facets: facets);

As FacetCollection implements ICollection<T>, you can use collection initializers to add facets to it, like this:

var facets = new FacetCollection
{
    { Facet.Category("adventure"), Facet.Version("1.19.3") },
    { Facet.Category("magic") }
};

Which will create the same query as the previous example.

Unsuccesful API calls

  • If the API call was unsuccessful, the client will throw an ModrinthApiException exception
  • This will be thrown if the API call return non-200 status code, or if the response body is not valid JSON
  • This approach will be revisited in future versions
using Modrinth;
using Modrinth.Exceptions;
using System.Net;

var client = new ModrinthClient(userAgent: "My_Awesome_Project");

try 
{
    var project = await _client.Project.GetAsync("non-existent-project");
    
    Console.WriteLine(project.Title);
}
// You can catch the exception and only handle the 404 status code
catch (ModrinthApiException e) when (e.Response.StatusCode == HttpStatusCode.NotFound) 
{
    Console.WriteLine("Project not found");
}
// Or you can catch the exception and handle all non-200 status codes
catch (ModrinthApiException e)
{
    Console.WriteLine($"API call failed with status code {e.Response.StatusCode}");
}

List of endpoints and their support in this library

Icon Meaning Comment
Implemented
Not implemented
⚠️ Untested The endpoint has been implemented, but no tests have been written for it yet

Project endpoints

Name Method Implemented
Search projects GET
Get a project GET
Modify a project PATCH
Delete a project DELETE ⚠️
Get multiple projects GET
Edit multiple projects PATCH
Get a list of random projects GET
Create a project POST
Change project's icon PATCH
Delete project's icon DELETE
Check project slug/ID validity GET
Add a gallery image POST
Modify a gallery image PATCH
Delete a gallery image DELETE
Get all of a project's dependencies GET
Follow a project POST
Unfollow a project DELETE
Schedule a project POST

Version endpoints

Name Method Implemented
Get list of project's versions GET
Get a version GET
Modify a version PATCH
Delete a version DELETE ⚠️
Create a version POST
Schedule a version POST ⚠️
Get multiple versions GET
Add files to version POST

Version file endpoints

Name Method Implemented
Get version from hash GET ⚠️
Delete a file from its hash DELETE ⚠️
Latest version of a project from a hash, loader(s), and game version(s) POST
Get versions from hashes POST
Latest versions of multiple projects from hashes, loader(s), and game version(s) POST

User endpoints

Name Method Implemented
Get a user GET
Modify a user PATCH
Delete a user DELETE
Get user from authorization header GET
Get multiple users GET
Change user's avatar PATCH
Get user's projects GET
Get user's notifications GET
Get user's followed projects GET
Get user's payout history GET
Withdraw payout balance to PayPal or Venmo POST

Team endpoints

Name Method Implemented
Get a project's team members GET
Get a team's members GET
Add a user to a team POST
Get the members of multiple teams GET
Join a team POST
Modify a team member's information PATCH
Remove a member from a team DELETE
Transfer team's ownership to another user PATCH

Tag endpoints

Name Method Implemented
Get a list of categories GET
Get a list of loaders GET
Get a list of game versions GET
Get a list of licenses GET
Get a list of donation platforms GET
Get a list of report types GET

Miscellaneous endpoints

Name Method Implemented
Report a project, user, or version POST
Various statistics about this Modrinth instance GET

Disclaimer

This is not an official Modrinth project. This is a third-party project that is not affiliated with Modrinth in any way.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.4.5 71 4/22/2024
3.4.4 85 4/21/2024
3.4.3 212 2/22/2024
3.4.2 126 2/22/2024
3.4.1 112 1/29/2024
3.4.0 367 11/28/2023
3.4.0-alpha2 106 9/29/2023
3.4.0-alpha 90 9/29/2023
3.3.0 272 8/7/2023
3.2.2 254 6/21/2023
3.2.1 119 6/21/2023
3.2.0 231 5/20/2023
3.2.0-rc2 86 5/13/2023
3.2.0-rc1 100 5/12/2023
3.2.0-beta1 127 4/25/2023
3.1.1 304 4/14/2023
3.1.0 223 4/2/2023
3.1.0-rc4 109 3/31/2023
3.1.0-rc3 158 3/25/2023
3.1.0-rc2 117 3/24/2023
3.1.0-rc1 110 3/23/2023
3.1.0-alpha3 122 3/21/2023
3.1.0-alpha2 122 3/20/2023
3.1.0-alpha 119 3/20/2023
3.0.10 212 3/20/2023
3.0.9 187 3/16/2023
3.0.8 201 3/15/2023
3.0.7 188 3/15/2023
3.0.6 196 3/11/2023
3.0.5 286 2/20/2023
3.0.4 224 2/20/2023
3.0.3 247 2/18/2023
3.0.2 251 2/2/2023
3.0.1 286 1/29/2023