Socket
Socket
Sign inDemoInstall

intrinio-client

Package Overview
Dependencies
8
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    intrinio-client

NodeJS client for the Intrinio API


Version published
Weekly downloads
10
increased by900%
Maintainers
1
Install size
2.16 MB
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 18 Jan 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc