HomeSDKs
SDKs
PreviewOfficial client libraries for integrating with the Coator API. Use our SDKs to avoid writing boilerplate and get started faster.
.NET SDK
C#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.ClientQuick 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
TypeScriptA fully typed TypeScript SDK for Node.js applications and serverless functions.
Install
npm install @coator/clientPython SDK
PythonA Python SDK for scripting, data pipelines, and backend integrations.
Install
pip install coatorMissing 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.