CivitaiSharp

A modern, lightweight, and AOT-ready .NET 10 client library for all things Civitai.com. Build powerful AI model discovery and generation tools with type-safe, fluent APIs.

Get Started API Reference View on GitHub
// Simplify your Civitai API usage
var result = await client.Models
    .WhereType(ModelType.Checkpoint)
    .OrderBy(ModelSort.MostDownloaded)
    .ExecuteAsync(resultsLimit: 10);

CivitaiSharp.Core

Low-level, typed client with fluent request builders for direct API access. Query models, images, tags, and creators with full control.

Learn More

CivitaiSharp.Sdk

High-level SDK with simplified abstractions for image generation jobs, coverage checking, and usage tracking.

Learn More

Resources