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.
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.
| SDK | Status | Notes |
|---|---|---|
| C# / .NET | Official | Aligned 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
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.
| Language | Status | Intended role |
|---|---|---|
| Python | Planned | Backends, automation, data workloads |
| JavaScript | Planned | Web services, edge and tooling |
| Go | Planned | High-throughput services and infrastructure tooling |
| Java | Planned | Enterprise integration and service platforms |