CurseForge.NET Library
The CurseForge.NET library is a client library developed to interact with the CurseForge API, allowing users to search for and access information about Minecraft mods, modpacks, resource packs, and wo
Installation
Install-Package CurseForge.NETGetting Started
using CurseForge.NET;
// Creates a CurseForge Client with an API-Key
using CurseforgeClient client = new CurseforgeClient("YOUR_API_KEY");Searching for Projects
Searching for Modpacks
CurseforgeSearchResult? modpacks = await client.SearchModpackAsync("All the Mods 6", "1.16.5", Chase.Minecraft.ModLoaders.Forge);Searching for Mods
CurseforgeSearchResult? mods = await client.SearchModsAsync("Warp", "1.19.4", Chase.Minecraft.ModLoaders.Fabric);Searching for Worlds
Searching for Resource Packs
Getting Individual Projects
Get Mod Information
Get Modpack Information
Get Resource Pack Information
Get World Information
Getting Project Files
Get Mod Files
Get Modpack Files
Get Resource Pack Files
Get World Files
Getting Specific Project Files
Get Mod File Information
Get Modpack File Information
Get Resource Pack File Information
Get World File Information
Downloading Project Files
Downloading Mod File
Downloading Modpack File
Downloading Resource Pack File
Downloading World File
Example
Last updated
