Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romulo-meirelles/bitnuvem
Bitnuvem API para exchange de criptomoedas. (Compras e vendas de Bitcoin - Exchange Brasileira) API Não Oficial.
https://github.com/romulo-meirelles/bitnuvem
android api assets bitcoin bitnuvem bot cryptocurrency-exchanges exchange framework linux mercadobitcoin netcore netstandard robots saldo trade windows
Last synced: 7 days ago
JSON representation
Bitnuvem API para exchange de criptomoedas. (Compras e vendas de Bitcoin - Exchange Brasileira) API Não Oficial.
- Host: GitHub
- URL: https://github.com/romulo-meirelles/bitnuvem
- Owner: Romulo-Meirelles
- License: gpl-3.0
- Created: 2022-11-18T02:17:15.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-19T00:57:41.000Z (about 2 years ago)
- Last Synced: 2024-12-15T21:42:26.425Z (7 days ago)
- Topics: android, api, assets, bitcoin, bitnuvem, bot, cryptocurrency-exchanges, exchange, framework, linux, mercadobitcoin, netcore, netstandard, robots, saldo, trade, windows
- Language: Visual Basic .NET
- Homepage:
- Size: 4.13 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ![Logo](https://raw.githubusercontent.com/Romulo-Meirelles/Bitnuvem/main/Pictures/Bitnuvem_logo.png)
BitnuvemAPI - (.NetFramework | .NetStandard | .NetCore)[![NuGet version (BitnuvemAPI)](https://img.shields.io/nuget/v/BitnuvemAPI.svg?style=flat-square)](https://www.nuget.org/packages/BitnuvemAPI/)
BITNUVEM API NÃO OFICIAL (UNOFFICIAL).
API para voce fazer consultas, saques, pagamentos trades na plataforma Bitnuvem.
- Características
- Faça pagamentos.
- Veja os Book de ofertas.
- Veja seu balanço.
- Verifique suas ordens.
- Encerre ordens ativas.
- Abra ordens.
- Veja o histórico de suas transações.
- Faça saques.
- Gerencie seus ativos e dinheiro.
- Fácil de usar.#DIVIRTA-SE!
## ALGUNS EXEMPLOS DE COMO USAR.
## Visual Basic
```vb
Using Client = BitnuvemClient.Create(New ApiConfig With {.ApiKey = "25g7i3e6d17835bdf136d8ab2efv94er", .SecretKey = "8ur15dXbawTu9nUzyYpfFBaXiq3iR1ff"})
Try
'PEGA O SEU BALANÇO.
Dim Balance = Await Client.Balance
Console.WriteLine(Balance.ToString)
Console.WriteLine()
'CRIA UMA NOVA ORDEM DE VENDA OU COMPRA LIMITE.
Dim VendaLimite = Await Client.Order_New_Limite(BitnuvemClient.Order.Venda, "0.00410880", "95494.72")
Console.WriteLine(VendaLimite.ToString)
Console.WriteLine()
'LISTA TODAS AS ORDEM (ATIVAS, CANCELADAS OU PENDENTES).
Dim GetOrderList = Await Client.Order_List(BitnuvemClient.OrderList.Ativas)
Console.WriteLine(GetOrderList.ToString)
Console.WriteLine()
'CANCELA UMA ORDEM DE COMPRA OU VENDA COM IDENTIFICAÇÃO
Dim CancelOrder = Await Client.Order_Cancel("48783624")
Console.WriteLine(CancelOrder.ToString)
Console.WriteLine()
'CANCELA TODAS AS ORDENS QUE ESTIVEREM ABERTAS.
Dim CancelAllOrder = Await Client.Order_Cancel_All(BitnuvemClient.OrderType.Venda)
Console.WriteLine(CancelAllOrder.ToString)
Console.WriteLine()
Catch ex As Exception
Console.WriteLine(ex.Message)
End Try
```## C# CSharp
```csharp
{
using (var Client = BitnuvemClient.Create(new ApiConfig() { ApiKey = "25g7i3e6d17835bdf136d8ab2efv94er", SecretKey = "8ur15dXbawTu9nUzyYpfFBaXiq3iR1ff" }))
{
try
{
// PEGA O SEU BALANÇO.
var Balance = Await Client.Balance;
Console.WriteLine(Balance.ToString);
Console.WriteLine();// CRIA UMA NOVA ORDEM DE VENDA OU COMPRA LIMITE.
var VendaLimite = Await Client.Order_New_Limite(BitnuvemClient.Order.Venda, "0.00410880", "95494.72");
Console.WriteLine(VendaLimite.ToString);
Console.WriteLine();// LISTA TODAS AS ORDEM (ATIVAS, CANCELADAS OU PENDENTES).
var GetOrderList = Await Client.Order_List(BitnuvemClient.OrderList.Ativas);
Console.WriteLine(GetOrderList.ToString);
Console.WriteLine();// CANCELA UMA ORDEM DE COMPRA OU VENDA COM IDENTIFICAÇÃO
var CancelOrder = Await Client.Order_Cancel("48783624");
Console.WriteLine(CancelOrder.ToString);
Console.WriteLine();// CANCELA TODAS AS ORDENS QUE ESTIVEREM ABERTAS.
var CancelAllOrder = Await Client.Order_Cancel_All(BitnuvemClient.OrderType.Venda);
Console.WriteLine(CancelAllOrder.ToString);
Console.WriteLine();
}catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}```
## Links
- [Homepage](https://bitnuvem.com/)
- [NuGet Package](https://www.nuget.org/packages/BitnuvemAPI/)
- [Github Project](https://github.com/Romulo-Meirelles/Bitnuvem)
- [License](https://github.com/Romulo-Meirelles/Bitnuvem/blob/main/LICENSE)
- [Telegram](https://t.me/Romulo_Meirelles)
- [WhatsApp](https://wa.me/message/KWIS3BYO6K24N1)
- [UpWork](https://www.upwork.com/freelancers/~01fcbc5039ac5766b4)