This is a simple REST based Jenkins client, by using Dapplo.HttpExtension
Example usage: var jenkinsApi = new JenkinsApi(new Uri("your jenkins url")); jenkinsApi.SetBasicAuthentication("username", "apiKey"); // Needed if crumbIssuer is used await _jenkinsApi.InitializeAsync(); var overview = await _jenkinsApi.GetOverviewAsync();