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
- Host: GitHub
- URL: https://github.com/samuraitruong/coinspot-api
- Owner: samuraitruong
- Created: 2021-01-12T11:34:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-10-03T22:20:49.000Z (over 3 years ago)
- Last Synced: 2025-10-06T16:38:32.985Z (9 months ago)
- Topics: coinspot, cryptocurrency, cryptotrading, hacktoberfest, hacktoberfest2021
- Language: TypeScript
- Homepage: https://samuraitruong.github.io/coinspot-api/
- Size: 367 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
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