C#/.NET Standard API Wrapper for Zed.run. We currently support querying for horses, stable information, and race data. All of this info is currently publicly available through the Zed.run api without any API keys.
All data can be retrieved through a specific client. We currently support three clients: Horse, Stable, and Race clients.
var client = new HorseClient();
var horse = await client.GetHorseAsync(address);
This will return a Horse model
var client = new StableClient();
var stable = await client.GetStableAsync(address);
This will return a list of Horse models
var raceAmount = 10;
var client = new RaceClient();
var races = await client.GetLatestRaces(raceAmount);
This will return a Race model