HomeSDKs

SDKs

Preview

Official client libraries for integrating with the Coator API. Use our SDKs to avoid writing boilerplate and get started faster.

.NET SDK

C#
Available

The official Coator SDK for .NET. Upload portfolios, manage mappings, and download transformed files from any C# or .NET application.

Install

dotnet add package Coator.Client

Quick example

using Coator.Client;

var client = new CoatorClient("coator_live_xxxx");

var portfolio = await client.Portfolios.UploadAsync(
    clientId: "CRED-001",
    mappingId: "map_abc123",
    file: fileStream
);

Console.WriteLine(portfolio.PortfolioId);

Node.js SDK

TypeScript
Coming soon

A fully typed TypeScript SDK for Node.js applications and serverless functions.

Install

npm install @coator/client

Python SDK

Python
Coming soon

A Python SDK for scripting, data pipelines, and backend integrations.

Install

pip install coator

Missing your language? The Coator API is a standard REST API — you can integrate directly using any HTTP client. See the API reference for details, or let us know which SDK you need.