intrinio-client

0.0.5 • Public • Published

Intrinio Logo

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.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.
 
//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) {
 
});

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

License

MIT

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i intrinio-client

    Weekly Downloads

    5

    Version

    0.0.5

    License

    ISC

    Last publish

    Collaborators

    • jspenc72