This wrapper makes it easy to get the definition of a kanji character and or find words that make use of it kanjiapi.dev
Stable builds can be found here: NuGet
To get a definition from the Kanji API here's what you should do:
KanjiClient client = new KanjiClient();
Using this client you can start interacting with the API.
KanjiDefinition result = client.GetKanjiDefinition("川").Data;
String[] results = client.GetKanjiByGrade(Grade.Grade_1).Data;
KanjiReading result = client.GetKanjiByReading("あり").Data;
KanjiWord[] results = client.GetKanjiWords("川").Data;
If anything's not working feel free to create an issue and I'll take a look at it! I'll try to keep this wrapper working if the API updates.