Tudormobile.Airthings
Tudormobile.Airthings provides a C# SDK for accessing the Airthings consumer API.
Documentation
- Introduction - Architecture overview and roadmap
- Getting Started - Installation, examples, and best practices
- Generated API Docs - Auto-generated technical reference
Quick Start
using Tudormobile.Airthings;
var clientId = "your_client_id";
var clientSecret = "your_client_secret";
using var httpClient = new HttpClient();
using var client = new AirthingsClient(httpClient, clientId, clientSecret);
var response = await client.ListAccounts();
if (response.IsSuccess)
{
// ...
}
Links: Source Code | NuGet Package