This is a simple API Client for WaniKani to speed up projects written in .NET Current API version is 1.1
Copyright (c) 2012, Daniel Widegren All code is licensed under the MIT License, Please read License.txt for more information.
Include the dll or code into your project.
var client = new WaniKaniClient("theApiKey");
var studyQueue = client.StudyQueue();
Console.WriteLine("You have {0} reviews and {1} new lessons.", studyQueue.ReviewsAvailable, studyQueue.LessonsAvailable);
The API got full XML documentation for every public method and pretty self explained.
This API will give out the same information + a few helper functions from the WaniKani API, to see exactly what information you can retrieve I recommend you to check out the API manual found here http://www.wanikani.com/api