All Projects → morpheums → Binance.api.csharp.client

morpheums / Binance.api.csharp.client

Licence: mit
C#.NET client for Binance Exchange API.

Programming Languages

csharp
926 projects

Projects that are alternatives of or similar to Binance.api.csharp.client

Binancedotnet
Official C# Wrapper for the Binance exchange API, with REST and WebSocket endpoints
Stars: ✭ 102 (+4.08%)
Mutual labels:  wrapper, cryptocurrency, binance, nuget
Cryptocurrency Portfolio
Google Sheets automatic creation with Google Apps Script (GAS) for managing a cryptocurrency tracking spreadsheet with multi exchanges
Stars: ✭ 134 (+36.73%)
Mutual labels:  api, cryptocurrency, binance
Python Binance Chain
Binance Chain Exchange API python implementation for automated trading
Stars: ✭ 96 (-2.04%)
Mutual labels:  api, cryptocurrency, binance
Colore
A powerful C# library for Razer Chroma's SDK
Stars: ✭ 121 (+23.47%)
Mutual labels:  api, wrapper, nuget
Binance
A .NET Standard Binance API library.
Stars: ✭ 199 (+103.06%)
Mutual labels:  api, cryptocurrency, binance
Python Binance
Binance Exchange API python implementation for automated trading
Stars: ✭ 4,114 (+4097.96%)
Mutual labels:  api, cryptocurrency, binance
Pycoingecko
Python wrapper for the CoinGecko API
Stars: ✭ 270 (+175.51%)
Mutual labels:  api, wrapper, cryptocurrency
Crypto Exchanges Gateway
Your gateway to the world of crypto !
Stars: ✭ 343 (+250%)
Mutual labels:  api, cryptocurrency, binance
Python Poloniex
Poloniex API wrapper for Python 2.7 & 3
Stars: ✭ 557 (+468.37%)
Mutual labels:  api, wrapper, cryptocurrency
Huobi golang
Go SDK for Huobi Spot API
Stars: ✭ 76 (-22.45%)
Mutual labels:  api, cryptocurrency
Tortilla
Wrapping web APIs made easy.
Stars: ✭ 1,215 (+1139.8%)
Mutual labels:  api, wrapper
Cryptotik
deprecated
Stars: ✭ 78 (-20.41%)
Mutual labels:  cryptocurrency, binance
Frostybot Js
Frostybot-JS is a cryptocurrency trading API endpoint, designed to execute webhook or REST requests as orders on a variety of well-known exchanges. While primarily designed to automate your Tradingview strategies, Frostybot can also be integrated with any other software using webhooks or REST. Bitmex, FTX, Deribit and Binance are supported.
Stars: ✭ 72 (-26.53%)
Mutual labels:  cryptocurrency, binance
Crypto Coin Alerts
An application that let you set alerts for the prices of several cryptocurrencies
Stars: ✭ 72 (-26.53%)
Mutual labels:  cryptocurrency, binance
Waves Api
Waves API library for Node.js and browser
Stars: ✭ 78 (-20.41%)
Mutual labels:  api, cryptocurrency
Crypto Whale Watcher
An app to keep a watch on big volume trades of cryptocurrecies on different exchanges by sending alerts via a Telegram Bot.
Stars: ✭ 60 (-38.78%)
Mutual labels:  cryptocurrency, binance
Iota.lib.cpp
IOTA C++ Library
Stars: ✭ 84 (-14.29%)
Mutual labels:  api, cryptocurrency
Spotify Web Api Kotlin
Spotify Web API wrapper for Kotlin/JVM, Kotlin/Android, Kotlin/JS, and Kotlin/Native. Includes a Spotify Web Playback SDK wrapper for Kotlin/JS, and a spotify-auth wrapper for Kotlin/Android
Stars: ✭ 86 (-12.24%)
Mutual labels:  api, wrapper
Crypto Trading Bot
Cryptocurrency trading bot in javascript for Bitfinex, Bitmex, Binance, FTX, Bybit ... (public edition)
Stars: ✭ 1,089 (+1011.22%)
Mutual labels:  cryptocurrency, binance
Simple Binance Trader
This is a simple trading bot for the binance exchange.
Stars: ✭ 79 (-19.39%)
Mutual labels:  cryptocurrency, binance

Binance API Csharp Client Icon

C#.NET client for Binance Exchange API.

GitHub last commit NuGet NuGet

Features

  • Very easy to understand and get started.
  • Complete implementation of the Binance API and WebSockets.
  • Validates transactions using the Binance Trading Rules
  • 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 Secret.

Installation

Nuget Package Manager

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

.NET CLI

dotnet add package Binance.API.Csharp.Client

Getting Started

In order to use signed methods you need to create a Binance 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.
  • ApiSecret - API secret used for signed API calls.
  • ApiUrl (Optional) - Base URL of the API.
  • WebSocketEndpoint (Optional) - URL of the WebSockets.
    var apiClient = new ApiClient("@Your-API-Key", "@Your-API-Secret");

Create an instance of the BinanceClient which will receive the previously created APIClient

    var binanceClient = new BinanceClient(apiClient);

Documentation and Examples

License

Binance.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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].