An open API service indexing awesome lists of open source software.

https://github.com/samuraitruong/coinspot-api

A new update version API for coinspot rewrite with nodejs + typesscript
https://github.com/samuraitruong/coinspot-api

coinspot cryptocurrency cryptotrading hacktoberfest hacktoberfest2021

Last synced: 3 months ago
JSON representation

A new update version API for coinspot rewrite with nodejs + typesscript

Awesome Lists containing this project

README

          

# NodeJS Coinspot.com.au API
- public api
- read only api
- full api

# Usage
## Full API

```js
import {CoinSpotClient} from '@samuraitruong/coinspot-api';
const client = new CoinSpotClient(
process.env.COINSPOT_KEY,
process.env.COINSPOT_SECRET,
);

const balance = await client.myBalance();
console.log(balance)

```

## Full API

```js
import {ReadOnlyClient} from '@samuraitruong/coinspot-api';
const client = new ReadOnlyClient(
process.env.COINSPOT_KEY_READ_ONLY,
process.env.COINSPOT_SECRET_READ_ONLY,
);

const adaTransactions = await client.myTransactions('ada');
console.log(adaTransactions)

```

## Documents
Auto generated document can be found here -

(https://samuraitruong.github.io/coinspot-api/)

## WIP