A C# helper library for SWAPI - the Star Wars API
All resources are accessible through the top-level SharpTrooperCore() methods:
SharpTrooperCore core = new SharpTrooperCore();
var planet = core.GetPlanet("1");
var planets = core.GetAllPlanets();
...
var resourceFromUrl = core.GetSingleByUrl<People>(planet.residents[0]);
For more info, visit the documentation of SWAPI: SWAPI/Documentation
or my personal blog post: Otomatik Mühendis