SDKs & Downloads

The eeCLOUD platform is designed to expose the same managed DaaS model through live OpenAPI documentation and official SDKs. The C# SDK is available now, and more language surfaces are planned.

Available Today

The official C# SDK mirrors the public eeCLOUD API and gives .NET teams a direct integration path without building a custom HTTP client from scratch.

SDKStatusNotes
C# / .NETOfficialAligned with eeCLOUD 4.1 API and object graph routes
dotnet add package eeCLOUD.SDK

using eeCLOUD.SDK;

using var ee = new eeCloudClient("YOUR_API_KEY");
var latest = await ee.Memory("telemetry").ReadAsync();

Links: NuGet package, platform docs, OpenAPI reference

Planned SDKs

The next wave of official SDKs is expected to follow the same logical model: Application, Memory, MemoryArea, ownership by reference, and the same read/write/update lifecycle.

LanguageStatusIntended role
PythonPlannedBackends, automation, data workloads
JavaScriptPlannedWeb services, edge and tooling
GoPlannedHigh-throughput services and infrastructure tooling
JavaPlannedEnterprise integration and service platforms

What every SDK should expose

  • Application-scoped client initialization through API key
  • Memory-scoped read and write helpers
  • Write, batch write and object graph write operations
  • Read by address, id, index, reference and field/value
  • Date-range and paged reads
  • Deterministic lifecycle operations through address
  • Count, size, version and health helpers