intrinio-client
- Unofficial NodeJS SDK for Intrinio
- The most affordable and flexible financial data on the market.
Quick Start
Create the app:
$ mkdir newApp$ cd newApp$ npm init
Install intrinio-client as a dependency:
$ npm install --save intrinio-client
Example Use
//index.jsvar username = "" //Your Intrinio App Usernamevar password = "" //Your Intrinio App Passwordvar intrinio = username password intrinio //All endpoints follow this pattern;
Using "watch"
var username = "" //Your Usernamevar password = "" //Your Passwordvar intrinio = username password var updateFrequency = 5000 //Duration between each requestvar numberOfRequests = 5 //Send this number of requests //Traditional Callback Style intriniowatch //Be careful, 'watch' will easily use up your daily quota if a large number of requests are sent.
//Available Endpoints
intrinio;
intrinio;
intrinio;
intrinio;
intrinio;
intrinio;
intrinio;
Installation
$ npm install intrinio-client
Features
- Fast, easy configuration
Docs & Community
Goals
- 100% Intrinio End Point Coverage (Currently ~40%)
Examples
To view the examples, clone the
$ git clone git://github.com/jspenc72/intrinio-client.git --depth 1$ cd intrinio-client$ npm install
Then run whichever example you want:
$ node examples/example.js
Tests
To run the test suite, first install the dependencies, then run npm test
:
$ npm install$ npm test
People
The original author of Intrinio-Client is @Jspenc72