ZeeKer.Dnd.Parser.Api.Client 1.1.1

dotnet add package ZeeKer.Dnd.Parser.Api.Client --version 1.1.1
                    
NuGet\Install-Package ZeeKer.Dnd.Parser.Api.Client -Version 1.1.1
                    
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="ZeeKer.Dnd.Parser.Api.Client" Version="1.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ZeeKer.Dnd.Parser.Api.Client" Version="1.1.1" />
                    
Directory.Packages.props
<PackageReference Include="ZeeKer.Dnd.Parser.Api.Client" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ZeeKer.Dnd.Parser.Api.Client --version 1.1.1
                    
#r "nuget: ZeeKer.Dnd.Parser.Api.Client, 1.1.1"
                    
#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.
#:package ZeeKer.Dnd.Parser.Api.Client@1.1.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ZeeKer.Dnd.Parser.Api.Client&version=1.1.1
                    
Install as a Cake Addin
#tool nuget:?package=ZeeKer.Dnd.Parser.Api.Client&version=1.1.1
                    
Install as a Cake Tool

ZeeKer.Dnd.Parser.Api.Client

Typed HttpClient for ZeeKer DnD Parser API.

Install

dotnet add package ZeeKer.Dnd.Parser.Api.Client

Usage

using Microsoft.Extensions.DependencyInjection;
using ZeeKer.Dnd.Parser.Api.Client;
using ZeeKer.Dnd.Parser.Api.Client.Models;

var services = new ServiceCollection();
services.AddDndParserApiClient("https://localhost:5001/");

var provider = services.BuildServiceProvider();
var client = provider.GetRequiredService<IDndParserApiClient>();

var spells = await client.GetSpellsAsync(new GetSpellsRequest
{
    Skip = 0,
    Take = 20,
    NameStartWith = "fir",
    SourceFilter = ["PHB"],
    NegativeSourceFilter = ["HB"]
});

var categories = await client.GetDurationCategoriesAsync();
var spellClasses = await client.GetSpellClassesAsync();
var spellSources = await client.GetSpellSourcesAsync();
var items = await client.GetItemsAsync(new GetItemsRequest
{
    Skip = 0,
    Take = 20,
    ItemTypeFilter = [ItemType.Weapon]
});
var feats = await client.GetFeatsAsync(new GetFeatsRequest
{
    Skip = 0,
    Take = 20,
    AbilitiesFilter = ["ability.CHA"],
    SkillsFilter = ["skill.performance"]
});

var spell = await client.GetSpellByIdAsync(Guid.Parse("11111111-1111-1111-1111-111111111111"));
var severalItems = await client.GetItemsByIdsAsync(
[
    Guid.Parse("11111111-1111-1111-1111-111111111111"),
    Guid.Parse("22222222-2222-2222-2222-222222222222")
]);

var itemTypes = await client.GetItemTypesAsync();
var weaponTypes = await client.GetWeaponTypesAsync();
var featSources = await client.GetFeatSourcesAsync();
var featAbilities = await client.GetFeatAbilitiesAsync();
var featSkills = await client.GetFeatSkillsAsync();
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.1.1 43 6/10/2026
1.1.0 97 5/16/2026
1.0.9 105 5/12/2026
1.0.8 99 5/10/2026
1.0.7 152 3/8/2026
1.0.6 107 3/8/2026
1.0.5 103 3/8/2026
1.0.4 108 3/7/2026
1.0.3 108 3/7/2026
1.0.2 101 3/7/2026
1.0.1 107 3/6/2026
1.0.0 108 3/6/2026