• Stars
    star
    696
  • Rank 64,573 (Top 2 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 9 years ago
  • Updated almost 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

πŸ“ˆ NodeJS client for Robinhood Trading πŸ”₯

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 @Sanko's Unofficial Documentation for more information.

FYI Robinhood's Terms and Conditions

Features

  • Quote Data
  • Buy, Sell Orders
  • Daily Fundamentals
  • Daily, Weekly, Monthly Historicals

Tested on the latest versions of Node 6, 7 & 8.

Installation

$ npm install robinhood --save

Usage

To authenticate, you can either use your username and password to the Robinhood app or a previously authenticated Robinhood api token:

Robinhood API Auth Token

//A previously authenticated Robinhood API auth token

var credentials = {
    token: ''
};
var Robinhood = require('robinhood')(credentials, function(err, data){

    //Robinhood is connected and you may begin sending commands to the api.

    Robinhood.quote_data('GOOG', function(error, response, body) {
        if (error) {
            console.error(error);
            process.exit(1);
        }
        console.log(body);
    });

});

Username & Password

This type of login may have been deprecated in favor of the API Token above.

//The username and password you use to sign into the robinhood app.

var credentials = {
    username: '',
    password: ''
};

MFA code

var Robinhood = robinhood({
        username : '',
        password : ''
    }, (err, data) => {
        if(err) {
            console.log(err);
        } else {
            if (data && data.mfa_required) {
            var mfa_code = '123456'; // set mfa_code here

            Robinhood.set_mfa_code(mfa_code, () => {
                console.log(Robinhood.auth_token());
            });
            }
            else {
                console.log(Robinhood.auth_token());
            }
        }
    });

API

Before using these methods, make sure you have initialized Robinhood using the snippet above.

auth_token()

Get the current authenticated Robinhood api authentication token

var credentials = require("../credentials.js")();
var Robinhood = require('robinhood')(credentials, function(err, data){
    console.log(Robinhood.auth_token());
        //      <authenticated alphanumeric token>
}

expire_token()

Expire the current authenticated Robinhood api token (logout).

NOTE: After expiring a token you will need to reinstantiate the package with username & password in order to get a new token!

var credentials = require("../credentials.js")();
var Robinhood = require('robinhood')(credentials, function(err, data){
    Robinhood.expire_token(function(err, response, body){
        if(err){
            console.error(err);
        }else{
            console.log("Successfully logged out of Robinhood and expired token.");
            // NOTE: body is undefined on the callback
        }
    })
});

investment_profile(callback)

Get the current user's investment profile.

var credentials = require("../credentials.js")();
var Robinhood = require('robinhood')(credentials, function(err, data){
    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(err, data){
    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(err, data){
    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(err, data){
    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(err, data){
    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(err, data){
    Robinhood.dividends(function(err, response, body){
        if(err){
            console.error(err);
        }else{
            console.log("dividends");
            console.log(body);
        }
    })
});

earnings(option, callback)

Get the earnings information. Option should be one of:

let option = { range: X } // X is an integer between 1 and 21. This returns all
                          // expected earnings within a number of calendar days.

OR

let option = { instrument: URL } // URL is full instrument url.

OR

let option = { symbol: SYMBOL } // SYMBOL is a plain ol' ticker symbol.
var Robinhood = require('robinhood')(credentials, function(err, data){
    Robinhood.earnings(option, function(err, response, body){
        if(err){
            console.error(err);
        }else{
            console.log("earnings");
            console.log(body);
        }
    })
});

orders(options, callback)

Get the user's orders information.

Retreive a set of orders

Send options hash (optional) to limit to specific instrument and/or earliest date of orders.

// optional options hash.  If no hash is sent, all orders will be returned.
let options = {
    updated_at: '2017-08-25',
    instrument: 'https://api.robinhood.com/instruments/df6c09dc-bb4f-4495-8c59-f13e6eb3641f/'
}
var Robinhood = require('robinhood')(credentials, function(err, data){
    Robinhood.orders(options, function(err, response, body){
        if(err){
            console.error(err);
        }else{
            console.log("orders");
            console.log(body);
        }
    })
});

Retreive a particular order

Send the id of the order to retreive the data for a specific order.

let order_id = "string_identifier"; // e.g., id: 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa',
var Robinhood = require('robinhood')(credentials, function(err, data){
    Robinhood.orders(order_id, function(err, response, body){
        if(err){
            console.error(err);
        }else{
            console.log("order");
            console.log(body);
        }
    })
});

positions(callback)

Get the user's position information.

var Robinhood = require('robinhood')(credentials, function(err, data){
    Robinhood.positions(function(err, response, body){
        if (err){
            console.error(err);
        }else{
            console.log("positions");
            console.log(body);
        }
    });
});

nonzero_positions(callback)

Get the user's nonzero position information only.

var Robinhood = require('robinhood')(credentials, function(err, data){
    Robinhood.nonzero_positions(function(err, response, body){
        if (err){
            console.error(err);
        }else{
            console.log("positions");
            console.log(body);
        }
    });
});

place_buy_order(options, callback)

Place a buy order on a specified stock.

var Robinhood = require('robinhood')(credentials, function(err, data){
    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 Day
  • gtc: Good Till Cancelled
  • oco: 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(err, data){
    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 Day
  • gtc: Good Till Cancelled
  • oco: 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(err, data){
    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 with the order object

var Robinhood = require('robinhood')(credentials, function(err, data){
    //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)       //{}
                }
            })
        }
    })
})

Cancel an order by order id

var order_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
var Robinhood = require('robinhood')(credentials, function(err, data){
        Robinhood.cancel_order(order_id, 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(err, data){
    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(err, data){
    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(err, data){
    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(err, data){

    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(err, data){

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

url(url, callback)

url is used to get continued or paginated data from the API. Queries with long results return a reference to the next sete. Example -

next: 'https://api.robinhood.com/orders/?cursor=cD0yMD82LTA0LTAzKzkwJVNCNTclM0ExNC45MzYyKDYlMkIwoCUzqtAW' }

The url returned can be passed to the url method to continue getting the next set of results.

tag(tag, callback)

Retrieve Robinhood's new Tags: In 2018, Robinhood Web will expose more Social and Informational tools. You'll see how popular a security is with other Robinhood users, MorningStar ratings, etc.

Known tags:

  • 10 Most Popular Instruments: 10-most-popular
  • 100 Most Popular Instruments: 100-most-popular

Response sample:

{
   "slug":"10-most-popular",
   "name":"10 Most Popular",
   "description":"",
   "instruments":[
      "https://api.robinhood.com/instruments/6df56bd0-0bf2-44ab-8875-f94fd8526942/",
      "https://api.robinhood.com/instruments/50810c35-d215-4866-9758-0ada4ac79ffa/",
      "https://api.robinhood.com/instruments/450dfc6d-5510-4d40-abfb-f633b7d9be3e/",
      "https://api.robinhood.com/instruments/e39ed23a-7bd1-4587-b060-71988d9ef483/",
      "https://api.robinhood.com/instruments/1e513292-5926-4dc4-8c3d-4af6b5836704/",
      "https://api.robinhood.com/instruments/39ff611b-84e7-425b-bfb8-6fe2a983fcf3/",
      "https://api.robinhood.com/instruments/ebab2398-028d-4939-9f1d-13bf38f81c50/",
      "https://api.robinhood.com/instruments/940fc3f5-1db5-4fed-b452-f3a2e4562b5f/",
      "https://api.robinhood.com/instruments/c74a93bc-58f3-4ccb-b4e3-30c65e2f88c8/",
      "https://api.robinhood.com/instruments/fdf46795-2a81-4506-880f-514c8010c163/"
   ]
}

popularity(symbol, callback)

Get the popularity for a specified stock.

var credentials = require("../credentials.js")();
var Robinhood = require('robinhood')(credentials, function() {
    Robinhood.popularity('GOOG', function(error, response, body) {
        if (error) {
            console.error(error);
        } else {
            console.log(body);
            // {
            //    instrument: 'https://api.robinhood.com/instruments/943c5009-a0bb-4665-8cf4-a95dab5874e4/',
            //    num_open_positions: 16319
            // }
        }
    });
});

options_positions

Obtain list of options positions

var credentials = require("../credentials.js")();
var Robinhood = require('robinhood')(credentials, function() {
    Robinhood.options_positions((err, response, body) => {
        if (err) {
            console.error(err);
        } else {
            console.log(body);
        }
    });
});

// {
//   "created_at": "2018-10-12T17:05:18.195533Z",
//   "direction": "credit",
//   "intraday_quantity": "35.0000",
//   "average_open_price": "56.5143",
//   "chain": "https://api.robinhood.com/options/chains/103ce21e-4921-47ed-a263-e05d2d3d5e99/",
//   "updated_at": "2018-10-12T19:11:02.984831Z",
//   "symbol": "XLF",
//   "trade_value_multiplier": "100.0000",
//   "intraday_direction": "credit",
//   "strategy": "short_put",
//   "intraday_average_open_price": "56.5143",
//   "legs": [
//     {
//       "strike_price": "26.5000",
//       "option": "https://api.robinhood.com/options/instruments/fa512b6e-c121-4ff4-b8aa-9aa2974514b7/",
//       "expiration_date": "2018-10-19",
//       "option_type": "put",
//       "id": "214e0f90-4416-427a-b119-e1a96d8e9da7",
//       "position_type": "short",
//       "position": "https://api.robinhood.com/options/positions/e18fda89-6ff2-443f-af71-cd780e558049/",
//       "ratio_quantity": 1
//     }
//   ],
//   "id": "e4e6cabe-2328-42f3-b4d9-d78da695d2ec",
//   "quantity": "35.0000"
// }

options_orders

Obtain list of history of option orders

var credentials = require("../credentials.js")();
var Robinhood = require('robinhood')(credentials, function() {
    Robinhood.options_orders((err, response, body) => {
        if (err) {
            console.error(err);
        } else {
            console.log(body);
        }
    });
});

options_dates

Obtain list of options expirations for a ticker

var credentials = require("../credentials.js")();
var Robinhood = require('robinhood')(credentials, function() {
    Robinhood.options_positions("MSFT", (err, response, {tradable_chain_id, expiration_dates}) => {
        if (err) {
            console.error(err);
        } else {
            // Expiration dates is [<Date String>] ordered by asc date ([0] would be more recent than [1])
            Robinhood.options_available(tradable_chain_id, expiration_dates[0])
        }
    });
});

options_available

Obtain list of options expirations for a ticker

var credentials = require("../credentials.js")();
var Robinhood = require('robinhood')(credentials, function() {
    Robinhood.options_positions("MSFT", (err, response, {tradable_chain_id, expiration_dates}) => {
        if (err) {
            console.error(err);
        } else {
            // Expiration dates is an array of date strings ordered by asc date ([0] would be more recent than [1])
            // Tradable_chain_id respresents the options identifier for a ticker
            Robinhood.options_available(tradable_chain_id, expiration_dates[0])
        }
    });
});

news(symbol, callback)

Return news about a symbol.

get_currency_pairs

Get crypto - currency pairs

var credentials = require("../credentials.js")();
var Robinhood = require('robinhood')(credentials, function() {
    Robinhood.get_currency_pairs((err, response, body) => {
        if (err) {
            console.error(err);
        } else {
            console.log(body);
        }
    });
});

get_crypto

Get cryptocurrency quote information from symbol

var credentials = require("../credentials.js")();
var Robinhood = require('robinhood')(credentials, function() {
    Robinhood.get_crypto('DOGE', (err, response, body) => {
        if (err) {
            console.error(err);
        } else {
            console.log(body);
        }
    });
});

Documentation lacking sample response Feel like contributing? :)

Contributors

Alejandro U. Alvarez (@aurbano)


Related Projects


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.

Analytics

License

FOSSA Status

More Repositories

1

react-ds

πŸ”₯ React Drag To Select component (tiny, touch friendly, and no dependencies!)
JavaScript
165
star
2

photojshop

🎨 Photo editing JavaScript library
JavaScript
141
star
3

regex101-osx

Regex101 packaged as an offline Mac OSX application
JavaScript
76
star
4

smart-area

πŸ“ Textareas on Steroids - AngularJS 1 directive
HTML
66
star
5

nuophoto

πŸ“· Web based image editor
JavaScript
61
star
6

TreeGenerator

🌲 Trees with JavaScript, just because why not?
JavaScript
25
star
7

sonar.css

CSS3/Sass Animated Attention Seekers
CSS
17
star
8

Nebula

An HTML5+JS nebulosa effect, it displays text by making circles float inside it.
JavaScript
12
star
9

node-timespan

πŸ• Simple npm package to get human readable timespans
TypeScript
11
star
10

react-undo

React Component for easy undo/redo on any component's props
JavaScript
9
star
11

ng-multiselect

Angular directive for multiselect elements with a nice UX
JavaScript
8
star
12

bananajs

Get colors from words (give it banana, get yellow)
JavaScript
8
star
13

typesafe-fetch

Type-Safe version of fetch that uses OpenAPI TypeScript definitions to check API calls at compile type. This is really AWESOME if you call APIs from a JS frontend πŸ”₯
TypeScript
7
star
14

SplineJS

JavaScript library for numerical computing and plotting
JavaScript
5
star
15

aurbano-theme

My personal color scheme for IDEs (IntelliJ IDEA & VS Code)
5
star
16

line-art

A little experiment with animated lines trying to create an elegant visual experience.
JavaScript
5
star
17

asciimg

πŸ’» Images on your terminal - Command line tool written in Perl
Perl
5
star
18

react-dragger

Tiny React Dragging library (mobile ready)
JavaScript
5
star
19

Spirographjs

JavaScript Spirograph rendering
JavaScript
4
star
20

angular-timespan

Simple directive to get human readable timespans from any two dates
JavaScript
4
star
21

Wikiline

A global timeline created from Wikipedia
PHP
4
star
22

ash

🐚 a(lex)sh(ell) -- Remaking bash to practice modern C++ :)
C++
4
star
23

sudoku_py

Sudoku Solver in Python
Python
4
star
24

language-graph

Directed World languages graph (Only Indo-European languages for now)
JavaScript
4
star
25

html5-business-simulator

HTML5 Business Simulators for an e-Learning course
JavaScript
4
star
26

react-component-starter

Starter kit to release React components
CSS
3
star
27

ui-grid-css

Improved CSS for UI-Grid (Available as Sass or CSS)
CSS
3
star
28

angular-requirejs-seed

Starter project with Angularjs Requirejs Bower Grunt and Bootstrap
JavaScript
3
star
29

dotfiles

copy of my dotfiles
Vim Script
3
star
30

resource-path

πŸ”— Tiny module to generate /resource/:paths for APIs
JavaScript
3
star
31

HTML-Clock

⌚ Clock made with HTML5+CSS3+JS
JavaScript
3
star
32

flocking-simulation

Flock Behavior Simulation rendered in WebGL
JavaScript
3
star
33

WebVisualizer

Watch the web using WebGL (Under development)
JavaScript
3
star
34

enigma_py

Python implementation of the Enigma machine
Python
2
star
35

aurbano.eu

Personal website and blog
JavaScript
2
star
36

Runaudio

iOS app that will play music at the BPM you're currently walking/running
Swift
2
star
37

procedural-maps

Procedural Map Generator Playground
JavaScript
2
star
38

backbone-demo

Backbone, Mustache and Underscore demo
JavaScript
2
star
39

evolving-beings

ML/Reinforcement learning applied to the evolution of simple "beings"
Jupyter Notebook
2
star
40

Cloudclient

☁️ Web client for cloud services like Dropbox
PHP
2
star
41

randchess

Chess, but every piece can be customised
TypeScript
1
star
42

CaveGame

The very typical cave/chopper game, ported to iOS using iPad's Codea app
C
1
star
43

express-session-postgres

Store an Express session in Postgres (type-safe)
1
star
44

SubtitledVideo

Subtitled flv video player for the TTLM1 schema
HTML
1
star
45

QuePiensas

[Archived] Social network I worked on back in 2009
PHP
1
star
46

blink

[Under development] Real-time, unopinionated, modern web framework for node
JavaScript
1
star
47

irc-gui-java

IRC Client GUI implemented in Java
Java
1
star
48

Swarm-SimuLTE

Robotic Swarm simulation using Omnet++ and SimuLTE
1
star
49

global-npx

Run npx commands from within a Nodejs application
JavaScript
1
star
50

ios-uaf-authenticator

UAF Authenticator for iOS with TouchID support
Swift
1
star