Skip to content

morpheums/Cobinhood.API.Csharp.Client

Repository files navigation


Cobinhood API Csharp Client
C#.NET client for Cobinhood Exchange API.

C#.NET client for Cobinhood Exchange API.

GitHub last commit NuGet NuGet

Features

  • Very easy to understand and get started.
  • Complete implementation of the Cobinhood API and WebSockets.
  • API results deserialized to concrete objects for ease of usage.
  • Includes a ready to go test project with all possible API calls, just provide your API Key and start testing.

Installation

Nuget Package Manager

PM> Install-Package Cobinhood.API.Csharp.Client

.NET CLI

dotnet add package Cobinhood.API.Csharp.Client

Getting Started

In order to use signed methods you need to create a Cobinhood account, if you already have one, go to your account and create a new API private key.

Create an instance of the ApiClient which receive the following parameters:

  • ApiKey - Key used to authenticate within the API.
  • ApiUrl (Optional) - Base URL of the API.
  • WebSocketEndpoint (Optional) - URL of the WebSockets.
    var apiClient = new ApiClient("@Your-API-Key");

Create an instance of the CobinhoodClient which will receive the previously created ApiClient

    var cobinhoodClient = new CobinhoodClient(apiClient);

Documentation and Examples

License

Cobinhood.API.Csharp.Client is open-sourced software licensed under the MIT license

Code of Conduct

Please read and follow our Code of Conduct.

Donations

If you find this tool useful, you can show you support with a kind donation:

BTC: 19cgA4YLfxakSvGyu9isdwBJw11mhCVNAp

ETH: 0xf059966c50727c1a67c112360686fbfbb0798cfa

Releases

No releases published

Packages

No packages published

Languages