robinhood2
v2.0.4
Published
Comprehensive NodeJS API wrapper for the Robinhood API
Downloads
8
Maintainers
Readme
NodeJS Framework to make trades with the private Robinhood API. Using this API is not encouraged, since it's not officially available and it has been reverse engineered. See this blog post for more information on the API.
FYI Robinhood's Terms and Conditions
This framework is based on a less active javascript framework created by @aurbano that was originally based on a deprecated Python framework originally developed by @Rohanpai.
Features
- Quote Data
- Buy, Sell Orders
- Daily Fundamentals
- Daily, Weekly, Monthly Historicals
Installation
$ npm install robinhood2 --save
Usage
//The username and password you use to sign into the robinhood app.
var credentials = {
username: '',
password: ''
};
var Robinhood = require('robinhood')(credentials, function(){
//Robinhood is connected and you may begin sending commands to the api.
Robinhood(null).quote_data('GOOG', function(error, response, body) {
if (error) {
console.error(error);
process.exit(1);
}
console.log(body);
});
});
API
Before using these methods, make sure you have initialized Robinhood using the snippet above.
investment_profile(callback)
Get the current user's investment profile.
var credentials = require("../credentials.js")();
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.investment_profile(function(err, response, body){
if(err){
console.error(err);
}else{
console.log("investment_profile");
console.log(body);
// { annual_income: '25000_39999',
// investment_experience: 'no_investment_exp',
// updated_at: '2015-06-24T17:14:53.593009Z',
// risk_tolerance: 'low_risk_tolerance',
// total_net_worth: '0_24999',
// liquidity_needs: 'very_important_liq_need',
// investment_objective: 'income_invest_obj',
// source_of_funds: 'savings_personal_income',
// user: 'https://api.robinhood.com/user/',
// suitability_verified: true,
// tax_bracket: '',
// time_horizon: 'short_time_horizon',
// liquid_net_worth: '0_24999' }
}
})
});
instruments(symbol, callback)
var credentials = require("../credentials.js")();
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.instruments('AAPL',function(err, response, body){
if(err){
console.error(err);
}else{
console.log("instruments");
console.log(body);
// { previous: null,
// results:
// [ { min_tick_size: null,
// splits: 'https://api.robinhood.com/instruments/450dfc6d-5510-4d40-abfb-f633b7d9be3e/splits/',
// margin_initial_ratio: '0.5000',
// url: 'https://api.robinhood.com/instruments/450dfc6d-5510-4d40-abfb-f633b7d9be3e/',
// quote: 'https://api.robinhood.com/quotes/AAPL/',
// symbol: 'AAPL',
// bloomberg_unique: 'EQ0010169500001000',
// list_date: '1990-01-02',
// fundamentals: 'https://api.robinhood.com/fundamentals/AAPL/',
// state: 'active',
// day_trade_ratio: '0.2500',
// tradeable: true,
// maintenance_ratio: '0.2500',
// id: '450dfc6d-5510-4d40-abfb-f633b7d9be3e',
// market: 'https://api.robinhood.com/markets/XNAS/',
// name: 'Apple Inc. - Common Stock' } ],
// next: null }
}
})
});
Get the user's instruments for a specified stock.
quote_data(stock, callback) // Not authenticated
Get the user's quote data for a specified stock.
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.quote_data('AAPL', function(err, response, body){
if(err){
console.error(err);
}else{
console.log("quote_data");
console.log(body);
//{
// results: [
// {
// ask_price: String, // Float number in a String, e.g. '735.7800'
// ask_size: Number, // Integer
// bid_price: String, // Float number in a String, e.g. '731.5000'
// bid_size: Number, // Integer
// last_trade_price: String, // Float number in a String, e.g. '726.3900'
// last_extended_hours_trade_price: String, // Float number in a String, e.g. '735.7500'
// previous_close: String, // Float number in a String, e.g. '743.6200'
// adjusted_previous_close: String, // Float number in a String, e.g. '743.6200'
// previous_close_date: String, // YYYY-MM-DD e.g. '2016-01-06'
// symbol: String, // e.g. 'AAPL'
// trading_halted: Boolean,
// updated_at: String, // YYYY-MM-DDTHH:MM:SS e.g. '2016-01-07T21:00:00Z'
// }
// ]
//}
}
})
});
accounts(callback)
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.accounts(function(err, response, body){
if(err){
console.error(err);
}else{
console.log("accounts");
console.log(body);
//{ previous: null,
// results:
// [ { deactivated: false,
// updated_at: '2016-03-11T20:37:15.971253Z',
// margin_balances: [Object],
// portfolio: 'https://api.robinhood.com/accounts/asdf/portfolio/',
// cash_balances: null,
// withdrawal_halted: false,
// cash_available_for_withdrawal: '692006.6600',
// type: 'margin',
// sma: '692006.6600',
// sweep_enabled: false,
// deposit_halted: false,
// buying_power: '692006.6600',
// user: 'https://api.robinhood.com/user/',
// max_ach_early_access_amount: '1000.00',
// cash_held_for_orders: '0.0000',
// only_position_closing_trades: false,
// url: 'https://api.robinhood.com/accounts/asdf/',
// positions: 'https://api.robinhood.com/accounts/asdf/positions/',
// created_at: '2015-06-17T14:53:36.928233Z',
// cash: '692006.6600',
// sma_held_for_orders: '0.0000',
// account_number: 'asdf',
// uncleared_deposits: '0.0000',
// unsettled_funds: '0.0000' } ],
// next: null }
}
})
});
Get the user's accounts.
user(callback)
Get the user information.
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.user(function(err, response, body){
if(err){
console.error(err);
}else{
console.log("user");
console.log(body);
}
})
});
dividends(callback)
Get the user's dividends information.
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.dividends(function(err, response, body){
if(err){
console.error(err);
}else{
console.log("dividends");
console.log(body);
}
})
});
orders(callback)
Get the user's orders information.
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.orders(function(err, response, body){
if(err){
console.error(err);
}else{
console.log("orders");
console.log(body);
}
})
});
place_buy_order(options, callback)
Place a buy order on a specified stock.
var Robinhood = require('robinhood')(credentials, function(){
var options = {
type: 'limit',
quantity: 1,
bid_price: 1.00,
instrument: {
url: String,
symbol: String
}
// // Optional:
// trigger: String, // Defaults to "gfd" (Good For Day)
// time: String, // Defaults to "immediate"
// type: String // Defaults to "market"
}
Robinhood.place_buy_order(options, function(error, response, body){
if(error){
console.error(error);
}else{
console.log(body);
}
})
});
For the Optional ones, the values can be:
[Disclaimer: This is an unofficial API based on reverse engineering, and the following option values have not been confirmed]
trigger
A trade trigger is usually a market condition, such as a rise or fall in the price of an index or security.
Values can be:
gfd
: Good For Daygtc
: Good Till Cancelledoco
: Order Cancels Other
time
The time in force for an order defines the length of time over which an order will continue working before it is canceled.
Values can be:
immediate
: The order will be cancelled unless it is fulfilled immediately.day
: The order will be cancelled at the end of the trading day.
place_sell_order(options, callback)
Place a sell order on a specified stock.
var Robinhood = require('robinhood')(credentials, function(){
var options = {
type: 'limit',
quantity: 1,
bid_price: 1.00,
instrument: {
url: String,
symbol: String
},
// // Optional:
// trigger: String, // Defaults to "gfd" (Good For Day)
// time: String, // Defaults to "immediate"
// type: String // Defaults to "market"
}
Robinhood.place_sell_order(options, function(error, response, body){
if(error){
console.error(error);
}else{
console.log(body);
}
})
});
For the Optional ones, the values can be:
[Disclaimer: This is an unofficial API based on reverse engineering, and the following option values have not been confirmed]
trigger
A trade trigger is usually a market condition, such as a rise or fall in the price of an index or security.
Values can be:
gfd
: Good For Daygtc
: Good Till Cancelledoco
: Order Cancels Other
time
The time in force for an order defines the length of time over which an order will continue working before it is canceled.
Values can be:
immediate
: The order will be cancelled unless it is fulfilled immediately.day
: The order will be cancelled at the end of the trading day.
fundamentals(symbol, callback)
Get fundamental data about a symbol.
Response
An object containing information about the symbol:
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.fundamentals("SBPH", function(error, response, body){
if(error){
console.error(error);
}else{
console.log(body);
//{ // Example for SBPH
// average_volume: string, // "14381.0215"
// description: string, // "Spring Bank Pharmaceuticals, Inc. [...]"
// dividend_yield: string, // "0.0000"
// high: string, // "12.5300"
// high_52_weeks: string, // "13.2500"
// instrument: string, // "https://api.robinhood.com/instruments/42e07e3a-ca7a-4abc-8c23-de49cb657c62/"
// low: string, // "11.8000"
// low_52_weeks: string, // "7.6160"
// market_cap: string, // "94799500.0000"
// open: string, // "12.5300"
// pe_ratio: string, // null (price/earnings ratio)
// volume: string // "4119.0000"
//}
}
})
});
cancel_order(order, callback)
Cancel an order
var Robinhood = require('robinhood')(credentials, function(){
//Get list of orders
Robinhood.orders(function(error, response, body){
if(error){
console.error(error);
}else{
var orderToCancel = body.results[0];
//Try to cancel the latest order
Robinhood.cancel_order(orderToCancel, function(err, response, body){
if(err){
//Error
console.error(err); // { message: 'Order cannot be cancelled.', order: {Order} }
}else{
//Success
console.log("Cancel Order Successful");
console.log(body) //{}
}
})
}
})
})
watchlists(name, callback)
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.watchlists(function(err, response, body){
if(err){
console.error(err);
}else{
console.log("got watchlists");
console.log(body);
//{ previous: null,
// results:
// [ { url: 'https://api.robinhood.com/watchlists/Default/',
// user: 'https://api.robinhood.com/user/',
// name: 'Default' } ],
// next: null }
}
})
});
create_watch_list(name, callback)
//Your account type must support multiple watchlists to use this endpoint otherwise will get { detail: 'Request was throttled.' } and watchlist is not created.
Robinhood.create_watch_list('Technology', function(err, response, body){
if(err){
console.error(err);
}else{
console.log("created watchlist");
console.log(body);
// {
// "url": "https://api.robinhood.com/watchlists/Technology/",
// "user": "https://api.robinhood.com/user/",
// "name": "Technology"
// }
}
})
sp500_up(callback)
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.sp500_up(function(err, response, body){
if(err){
console.error(err);
}else{
console.log("sp500_up");
console.log(body);
//{ count: 10,
// next: null,
// previous: null,
// results:
// [ { instrument_url: 'https://api.robinhood.com/instruments/adbc3ce0-dd0d-4a7a-92e0-88c1f127cbcb/',
// symbol: 'NEM',
// updated_at: '2016-09-21T13:03:32.310184Z',
// price_movement: [{ market_hours_last_movement_pct: '7.55', market_hours_last_price: '41.0300' }],
// description: 'Newmont Mining Corp. is a gold producer, which is engaged in the acquisition, exploration and production of gold and copper properties in U.S., Australia, Peru, Indonesia, Ghana, Canada, New Zealand and Mexico. The company\'s operating segments include North America, South America, Asia Pacific and Africa. The North America segment consists of Nevada in the United States, La Herradura in Mexico and Hope Bay in Canada. The South America segment consists of Yanacocha and Conga in Peru. The Asia Pacific segment consists of Boddington in Australia, Batu Hijau in Indonesia and other smaller operations in Australia and New Zealand. The Africa segment consists of Ahafo and Akyem in Ghana. The company was founded by William Boyce Thompson on May 2, 1921 and is headquartered in Greenwood Village, CO.' },
// { instrument_url: 'https://api.robinhood.com/instruments/809adc21-ef75-4c3d-9c0e-5f9a167f235b/',
// symbol: 'ADBE',
// updated_at: '2016-09-21T13:01:31.748590Z',
// price_movement: [{ market_hours_last_movement_pct: '7.55', market_hours_last_price: '41.0300' }],
// description: 'Adobe Systems, Inc. provides digital marketing and digital media solutions. The company operates its business through three segments: Digital Media, Digital Marketing, and Print and Publishing. The Digital Media segment offers creative cloud services, which allow members to download and install the latest versions of products, such as Adobe Photoshop, Adobe Illustrator, Adobe Premiere Pro, Adobe Photoshop Lightroom and Adobe InDesign, as well as utilize other tools, such as Adobe Acrobat. This segment also offers other tools and services, including hobbyist products, such as Adobe Photoshop Elements and Adobe Premiere Elements, Adobe Digital Publishing Suite, Adobe PhoneGap, Adobe Typekit, as well as mobile apps, such as Adobe Photoshop Mix, Adobe Photoshop Sketch and Adobe Premiere Clip that run on tablets and mobile devices. The Digital Media serves professionals, including graphic designers, production artists, web designers and developers, user interface designers, videographers, motion graphic artists, prepress professionals, video game developers, mobile application developers, students and administrators. The Digital Marketing segment offers various solutions, including analytics, social marketing, targeting, media optimization, digital experience management and cross-channel campaign management, as well as premium video delivery and monetization. This segment also offers legacy enterprise software, such as Adobe Connect web conferencing platform and Adobe LiveCycle. The Print and Publishing segment offers legacy products and services for eLearning solutions, technical document publishing, web application development and high-end printing. Adobe Systems was founded by Charles M. Geschke and John E. Warnock in December 1982 and is headquartered in San Jose, CA.' }
// ]
//}
}
})
});
sp500_down(callback)
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.sp500_down(function(err, response, body){
if(err){
console.error(err);
}else{
console.log("sp500_down");
console.log(body);
//{ count: 10,
// next: null,
// previous: null,
// results:
// [ { instrument_url: 'https://api.robinhood.com/instruments/adbc3ce0-dd0d-4a7a-92e0-88c1f127cbcb/',
// symbol: 'NEM',
// updated_at: '2016-09-21T13:03:32.310184Z',
// price_movement: [{ market_hours_last_movement_pct: '-3.70', market_hours_last_price: '13.2800' }],
// description: 'Newmont Mining Corp. is a gold producer, which is engaged in the acquisition, exploration and production of gold and copper properties in U.S., Australia, Peru, Indonesia, Ghana, Canada, New Zealand and Mexico. The company\'s operating segments include North America, South America, Asia Pacific and Africa. The North America segment consists of Nevada in the United States, La Herradura in Mexico and Hope Bay in Canada. The South America segment consists of Yanacocha and Conga in Peru. The Asia Pacific segment consists of Boddington in Australia, Batu Hijau in Indonesia and other smaller operations in Australia and New Zealand. The Africa segment consists of Ahafo and Akyem in Ghana. The company was founded by William Boyce Thompson on May 2, 1921 and is headquartered in Greenwood Village, CO.' },
// { instrument_url: 'https://api.robinhood.com/instruments/809adc21-ef75-4c3d-9c0e-5f9a167f235b/',
// symbol: 'ADBE',
// updated_at: '2016-09-21T13:01:31.748590Z',
// price_movement: [{ market_hours_last_movement_pct: '-3.70', market_hours_last_price: '13.2800' }],
// description: 'Adobe Systems, Inc. provides digital marketing and digital media solutions. The company operates its business through three segments: Digital Media, Digital Marketing, and Print and Publishing. The Digital Media segment offers creative cloud services, which allow members to download and install the latest versions of products, such as Adobe Photoshop, Adobe Illustrator, Adobe Premiere Pro, Adobe Photoshop Lightroom and Adobe InDesign, as well as utilize other tools, such as Adobe Acrobat. This segment also offers other tools and services, including hobbyist products, such as Adobe Photoshop Elements and Adobe Premiere Elements, Adobe Digital Publishing Suite, Adobe PhoneGap, Adobe Typekit, as well as mobile apps, such as Adobe Photoshop Mix, Adobe Photoshop Sketch and Adobe Premiere Clip that run on tablets and mobile devices. The Digital Media serves professionals, including graphic designers, production artists, web designers and developers, user interface designers, videographers, motion graphic artists, prepress professionals, video game developers, mobile application developers, students and administrators. The Digital Marketing segment offers various solutions, including analytics, social marketing, targeting, media optimization, digital experience management and cross-channel campaign management, as well as premium video delivery and monetization. This segment also offers legacy enterprise software, such as Adobe Connect web conferencing platform and Adobe LiveCycle. The Print and Publishing segment offers legacy products and services for eLearning solutions, technical document publishing, web application development and high-end printing. Adobe Systems was founded by Charles M. Geschke and John E. Warnock in December 1982 and is headquartered in San Jose, CA.' }
// ]
//}
}
})
});
splits(instrument, callback)
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.splits("7a3a677d-1664-44a0-a94b-3bb3d64f9e20", function(err, response, body){
if(err){
console.error(err);
}else{
console.log("got splits");
console.log(body); //{ previous: null, results: [], next: null }
}
})
})
historicals(symbol, intv, span, callback)
var Robinhood = require('robinhood')(credentials, function(){
//{interval=5minute|10minute (required) span=week|day| }
Robinhood.historicals("AAPL", '5minute', 'week', function(err, response, body){
if(err){
console.error(err);
}else{
console.log("got historicals");
console.log(body);
//
// { quote: 'https://api.robinhood.com/quotes/AAPL/',
// symbol: 'AAPL',
// interval: '5minute',
// span: 'week',
// bounds: 'regular',
// previous_close: null,
// historicals:
// [ { begins_at: '2016-09-15T13:30:00Z',
// open_price: '113.8300',
// close_price: '114.1700',
// high_price: '114.3500',
// low_price: '113.5600',
// volume: 3828122,
// session: 'reg',
// interpolated: false },
// { begins_at: '2016-09-15T13:35:00Z',
// open_price: '114.1600',
// close_price: '114.3800',
// high_price: '114.7300',
// low_price: '114.1600',
// volume: 2166098,
// session: 'reg',
// interpolated: false },
// ... 290 more items
// ]}
//
}
})
})
Contributors
*** Alejandro U. Alvarez (@aurbano)
- Jesse Spencer (@Jspenc72)
- Justin Keller (@nodesocket)
- Wei-Sheng Su (@ted7726)
- Dustin Moore (@dustinmoorenet)
- Alex Ryan (@ialexryan)
- Ben Van Treese (@vantreeseba)
- Zaheen (@z123)
- Chris Busse (@busse)
- Jason Truluck (@jasontruluck)
Even though this should be obvious: I am not affiliated in any way with Robinhood Financial LLC. I don't mean any harm or disruption in their service by providing this. Furthermore, I believe they are working on an amazing product, and hope that by publishing this NodeJS framework their users can benefit in even more ways from working with them.