1.0.2 • Published 1 year ago

@torr7s/messari-client v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Messari Client

A Node.js client for interacting with the Messari API, which provides crypto research, data and tools.

Installation

You can install the latest version of the client using:

$ npm install @torr7s/messari-client
$ yarn add @torr7s/messari-client

Getting Started

import { MessariClient } from '@torr7s/messari-client';

(async () => {
  const client = new MessariClient('random-messari-api-key');
  const asset = await client.getAsset('ethereum');

  if (asset.status.error_message) {
    // An error has been found
    // asset.data will be undefined
  }

  // Life goes on..
})();

License

This project is MIT licensed.

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

0.2.6

1 year ago