Tudormobile.Airthings

Tudormobile.Airthings provides a C# SDK for accessing the Airthings consumer API.

Documentation

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