EU CBAM Scope 1/2 embedded emissions and EU ETS carbon tax liability calculator across Iron, Steel, Aluminum, Cement, Fertilizers, and Hydrogen.
Official high-performance .NET client library for EU CBAM & Carbon Tax Calculation Engine, built on the Stanza Micro-API Network. Fully compatible with .NET Standard 2.0, .NET 6.0, .NET 7.0, and .NET 8.0+.
- 🌐 Online Interactive Sandbox: Test your inputs live
- 📚 API Reference & Schemas: View documentation on Stanza
- ⚡ Platform Overview: Explore the Stanza Developer Network
dotnet add package StanzaApi.CbamCarbonusing System;
using System.Threading.Tasks;
using StanzaApi.CbamCarbon;
class Program
{
static async Task Main()
{
// Initialize client (reads STANZA_API_KEY from environment if not passed)
var client = new CbamCarbonClient();
// Perform deterministic verification
string responseJson = await client.ValidateAsync({""goods_category"":""iron_and_steel"",""production_country"":""TR"",""quantity_tonnes"":500});
Console.WriteLine(responseJson);
}
}{
"success": true,
"data": {
"goods_category": "iron_and_steel",
"direct_emissions_tco2e": 950,
"estimated_ets_liability_eur": 71250
}
}Pass options directly to the CbamCarbonClient constructor:
var client = new CbamCarbonClient(
apiKey: "your_api_key_here",
baseUrl: "https://api.stanzaapi.com/cbam-carbon"
);- EU CBAM & Carbon Tax Calculation Engine Interactive Sandbox
- Stanza Developer Directory
- Source Code & Issue Tracker
MIT © Stanza — Powered by Stanza.