jamestford
pyhood
Python

A modern Python client for the Robinhood API — with automatic token refresh and no auth headaches

Last updated Jun 17, 2026
19
Stars
2
Forks
6
Issues
0
Stars/day
Attention Score
57
Language breakdown
No language data available.
Files click to expand
README

pyhood

pyhood logo

A modern, reliable Python client for the Robinhood API.

CI PyPI Docs Python 3.10+ License: MIT Coverage Security Code style: ruff

A modern, reliable Python client for the Robinhood API.

Built for automated trading — with auth that doesn't break, proper error handling, and sane defaults.

Why pyhood?

  • 🪙 Dual API support — The only Python library that wraps both Robinhood's unofficial stocks/options API and their official Crypto Trading API. One library, full coverage.
  • 🔐 Auth that just works — Login with timeouts, automatic token refresh, and session persistence. Authenticate once, stay connected for days. No more scripts that hang forever waiting for device approval.
  • 🔄 Automatic token refresh — pyhood uses OAuth refresh tokens to renew your session silently — no credentials, no device approval, no human in the loop. Built for unattended automation.
  • 🏷️ Type hints everywhere — Full type annotations, dataclass responses, IDE-friendly. No more guessing what's in a dict.
  • 🛡️ Built-in rate limiting — Automatic request throttling and retry logic so you don't get locked out.
  • 📊 Options-first — Deep options chain support with Greeks, volume/OI analysis, and earnings integration. Supports both equity and index options (SPX, NDX, VIX, RUT).
  • 📈 Futures trading — Contract details, real-time quotes, order history, and P&L calculation for Robinhood futures.
  • 🏦 IRA/Retirement accounts — Trade stocks and options in Traditional and Roth IRAs. The only Python Robinhood library with retirement account support.
  • 💰 Banking & dividends — Query ACH transfers, linked bank accounts, debit card transactions, and dividend history.
  • 📋 Watchlists — Create, manage, and modify your Robinhood watchlists programmatically.
  • 🔍 Research & discovery — Analyst ratings, news feed, S&P 500 movers, trending stocks, instrument popularity, and stock splits.
  • 📑 Portfolio & documents — Portfolio historicals, option historicals, account statements, and trade confirmations.
  • 🧪 Tested and maintained — 212 tests, CI across Python 3.10-3.13, linted with ruff. If it breaks, we know immediately.

Quick Start

import pyhood
from pyhood.client import PyhoodClient

Login (with timeout — never hangs)

session = pyhood.login(username="you@email.com", password="...", timeout=90) client = PyhoodClient(session)

Stock data

quote = client.get_quote("AAPL") print(f"AAPL: ${quote.price:.2f} ({quote.change_pct:+.1f}%)")

Options chains (works for equities and indexes)

chain = client.getoptionschain("SPX", expiration="2026-04-17") for option in chain.calls: print(f" {option.strike} call | IV: {option.iv:.0%} | Delta: {option.delta:.2f}")

Account

positions = client.get_positions() balance = client.getbuyingpower()

IRA Trading

pyhood can discover and trade in IRA/retirement accounts — something no other Python Robinhood library supports.

# Discover all accounts (including IRA)
accounts = client.getallaccounts()

Check IRA buying power

bp = client.getbuyingpower(accountnumber="YOURIRA_ACCOUNT")

Buy options in your Roth IRA

order = client.buy_option( symbol="NKE", strike=55.0, expiration="2026-04-02", opti, quantity=3, price=1.60, accountnumber="YOURIRA_ACCOUNT", )

See the Account documentation for details on IRA account discovery and limitations.

Authentication

Robinhood requires device approval on first login. After that, pyhood keeps your session alive automatically.

First Login

  • Have the Robinhood mobile app open on your phone
  • Call pyhood.login() — it will trigger a device approval request
  • Tap "Yes, it's me" in the Robinhood app when prompted
  • pyhood saves the session token to ~/.pyhood/session.json for reuse
import pyhood

First login — will wait up to 90s for you to approve on phone

session = pyhood.login( username="you@email.com", password="your_password", timeout=90, # seconds to wait for device approval )

Staying Authenticated

Once you've approved the device, pyhood handles the rest:

# Reuses cached session — no approval needed
session = pyhood.login(username="you@email.com", password="your_password")

Or refresh explicitly — no credentials needed at all

session = pyhood.refresh()

Sessions last several days (observed 5-8 days). When the access token expires, pyhood automatically refreshes it using the stored refresh token — no device approval, no credentials, no human interaction. This is what makes pyhood safe for automated scripts and cron jobs.

Device approval is only needed again if the refresh token itself expires (typically much longer than the access token).

Error Handling

pyhood raises specific exceptions so you know exactly what went wrong:

from pyhood.exceptions import (
    LoginTimeoutError,            # Timed out waiting for device approval
    DeviceApprovalRequiredError,  # Approval prompt sent but not completed
    MFARequiredError,             # SMS/email code needed — pass mfa_code parameter
    TokenExpiredError,            # Refresh token expired — full re-login needed
    AuthError,                    # Generic auth failure
)

try: session = pyhood.login(username="...", password="...", timeout=90) except LoginTimeoutError: print("Open Robinhood app and approve the device, then try again") except MFARequiredError: code = input("Enter the code from SMS/email: ") session = pyhood.login(username="...", password="...", mfa_code=code) except AuthError as e: print(f"Login failed: {e}")

⚠️ Rate Limits

Robinhood aggressively rate-limits authentication. If login fails:

  • Do NOT retry immediately — wait at least 5 minutes
  • 2-3 failed attempts will lock out your account's API access for 5-10 minutes
  • Each login attempt generates a new device approval — old approvals don't carry over
  • See the Rate Limits documentation for details

Install

pip install pyhood

Crypto Trading (Official API)

pyhood also supports Robinhood's official Crypto Trading API — no device approval needed, just API keys.

from pyhood.crypto import CryptoClient

API key auth — generate keys at robinhood.com/account/crypto

crypto = CryptoClient(apikey="rh-api-...", privatekey_base64="...")

Market data

quotes = crypto.getbestbid_ask("BTC-USD", "ETH-USD") price = crypto.getestimatedprice("BTC-USD", "buy", 0.001)

Historical OHLCV data

candles = crypto.get_historicals("BTC-USD", interval="hour", span="week") for c in candles: print(f"{c.beginsat} O:{c.openprice} H:{c.highprice} L:{c.lowprice} C:{c.close_price}")

Account & holdings

account = crypto.get_account() holdings = crypto.getholdings(account.accountnumber, "BTC")

Place an order

order = crypto.place_order( accountnumber=account.accountnumber, side="buy", order_type="market", symbol="BTC-USD", orderconfig={"assetquantity": "0.001"}, )

Generate your API keys at robinhood.com/account/crypto. See the Crypto documentation for full details.

Futures Trading

pyhood supports Robinhood's futures API — contracts, quotes, orders, and P&L tracking.

client = PyhoodClient(session)

Contract details

contract = client.getfuturescontract("ESH26") print(f"{contract.name} — multiplier: {contract.multiplier}")

Real-time quote

quote = client.getfuturesquote("ESH26") print(f"Last: {quote.last_price} Bid: {quote.bid} Ask: {quote.ask}")

P&L across all closed futures trades

pnl = client.calculatefuturespnl() print(f"Realized P&L: ${pnl:.2f}")

See the Futures documentation for full details.

Banking & Dividends

# Check linked bank accounts
accounts = client.getbankaccounts()

View transfer history

transfers = client.get_transfers()

Initiate a deposit

transfer = client.initiate_transfer( amount=500.00, direction="deposit", achrelationshipurl=accounts[0].url, )

Debit card transactions (Cash Management)

txns = client.getcardtransactions() pending = client.getcardtransactions(card_type="pending")

Dividend history

dividends = client.get_dividends() aapldivs = client.getdividendsbysymbol("AAPL")

Watchlists

# Get all watchlists
watchlists = client.get_watchlists()

Get a specific watchlist

default = client.get_watchlist("Default") print(default.symbols) # ['AAPL', 'MSFT', ...]

Add / remove symbols

client.addtowatchlist(["NVDA", "TSLA"]) client.removefromwatchlist(["TSLA"])

Markets & Trading Hours

# List available exchanges
markets = client.get_markets()

Check if NYSE is open on a specific date

hours = client.getmarkethours("XNYS", "2026-03-30") print(f"Open: {hours.isopen}, {hours.opensat} — {hours.closes_at}")

Research & Discovery

# Analyst ratings
rating = client.get_ratings("AAPL")
print(f"Buy: {rating.numbuy}, Hold: {rating.numhold}, Sell: {rating.num_sell}")

News articles

articles = client.get_news("AAPL") for a in articles: print(f"{a.source}: {a.title}")

S&P 500 movers

movers = client.get_movers("up")

Trending stocks (100 most popular on Robinhood)

popular = client.get_tags("100-most-popular")

How many RH users hold a stock

count = client.get_popularity("AAPL")

Stock split history

splits = client.get_splits("AAPL")

Portfolio & Option Historicals

# Portfolio value over time
history = client.getportfoliohistoricals(
    account_number="123456", interval="day", span="year",
)
for candle in history:
    print(f"{candle.beginsat}: ${candle.adjustedclose_equity:.2f}")

Historical option pricing

candles = client.getoptionhistoricals("option-id-here", interval="day", span="month")

Account documents (statements, trade confirms, tax docs)

docs = client.getdocuments(doctype="account_statement")

Development Status

  • ✅ Stocks/options market data (unofficial API) — functional (equity + index options)
  • ✅ Futures trading (contracts, quotes, orders, P&L) — functional
  • ✅ Crypto trading (official API) — functional
  • ✅ Authentication with automatic token refresh — functional
  • ✅ Full order management for stocks/options — functional
  • ✅ Banking (ACH transfers, deposits/withdrawals) — functional
  • ✅ Watchlists (create/manage) — functional
  • ✅ Dividends (query history) — functional
  • ✅ Markets/Trading Hours (exchange schedules) — functional
  • ✅ User profile & notification settings — functional
  • ✅ Research & discovery (ratings, news, movers, tags, popularity) — functional
  • ✅ Portfolio historicals & option historicals — functional
  • ✅ Documents & statements — functional
  • ✅ Day trades, margin calls, deposit schedules — functional

Acknowledgments

pyhood stands on the shoulders of the community that figured out Robinhood's unofficial API:

  • robinstocks by Josh Fernandes — The most widely used Python library for Robinhood. Its auth flow, endpoint mapping, and API patterns laid the groundwork that pyhood builds from.
  • pyrh by Robinhood Unofficial — An early Python client that pioneered OAuth token refresh and session management patterns for the Robinhood API.
  • Robinhood by Sanko — The original unofficial API documentation that mapped out Robinhood's endpoints and made all of these libraries possible.
These projects made Robinhood accessible to developers. pyhood continues that mission with a focus on reliability and automation.

License

MIT

🔗 More in this category

© 2026 GitRepoTrend · jamestford/pyhood · Updated daily from GitHub