Create the app:
$ mkdir newApp
$ cd newApp
$ npm init
Install intrinio-client as a dependency:
$ npm install --save intrinio-client
Example Use
//index.js
var username = "" //Your Intrinio App Username
var password = "" //Your Intrinio App Password
var intrinio = require("intrinio-client")(username, password)
intrinio
.ticker('AAPL') //All endpoints follow this pattern
.on('complete', function(data, response) {
//data is the response from the Intrinio API
//response is the http response
if(response.statusCode==404){
console.log("Not found")
}else if(response.statusCode==200){
console.log(data)
}
});
Using "watch"
var username = "" //Your Username
var password = "" //Your Password
var intrinio = require("../index.js")(username, password)
var updateFrequency = 5000 //Duration between each request
var numberOfRequests = 5 //Send this number of requests
//Traditional Callback Style
intrinio
.watch
.prices('AAPL', updateFrequency, numberOfRequests, function(watcher){
watcher
.on('update', function(data, response){
//Gets fired 5 times each one 5 seconds after the previous update.
console.log(data) //data is the response from the Intrinio API
console.log(response) //response is the http response
})
.on('error', function(data, response){
console.log(data) //data is the response from the Intrinio API
console.log(response) //response is the http response
})
})
//Be careful, 'watch' will easily use up your daily quota if a large number of requests are sent with a very high frequency.
//Available Endpoints
intrinio.prices('AAPL')
.on('complete', function(data, response) {
});
intrinio.companies('AAPL')
.on('complete', function(data, response) {
});
intrinio.securities('AAPL')
.on('complete', function(data, response) {
});
intrinio.indices('AAPL')
.on('complete', function(data, response) {
});
intrinio.data_point('AAPL')
.on('complete', function(data, response) {
});
intrinio.historical_data('AAPL')
.on('complete', function(data, response) {
});
intrinio.news('AAPL')
.on('complete', function(data, response) {
});
$ npm install intrinio-client
- Fast, easy configuration
- 100% Intrinio End Point Coverage (Currently ~40%)
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
To run the test suite, first install the dependencies, then run npm test
:
$ npm install
$ npm test
The original author of Intrinio-Client is @Jspenc72