A modern, reliable Python client for the Robinhood API
Project description
pyhood
A modern, reliable Python client for the Robinhood API.
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, and dividend history.
-
๐ Watchlists โ Create, manage, and modify your Robinhood watchlists programmatically.
-
๐งช Tested and maintained โ 197 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.get_options_chain("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.get_buying_power()
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.get_all_accounts()
# Check IRA buying power
bp = client.get_buying_power(account_number="YOUR_IRA_ACCOUNT")
# Buy options in your Roth IRA
order = client.buy_option(
symbol="NKE", strike=55.0, expiration="2026-04-02",
option_type="call", quantity=3, price=1.60,
account_number="YOUR_IRA_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.jsonfor 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(api_key="rh-api-...", private_key_base64="...")
# Market data
quotes = crypto.get_best_bid_ask("BTC-USD", "ETH-USD")
price = crypto.get_estimated_price("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.begins_at} O:{c.open_price} H:{c.high_price} L:{c.low_price} C:{c.close_price}")
# Account & holdings
account = crypto.get_account()
holdings = crypto.get_holdings(account.account_number, "BTC")
# Place an order
order = crypto.place_order(
account_number=account.account_number,
side="buy",
order_type="market",
symbol="BTC-USD",
order_config={"asset_quantity": "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.get_futures_contract("ESH26")
print(f"{contract.name} โ multiplier: {contract.multiplier}")
# Real-time quote
quote = client.get_futures_quote("ESH26")
print(f"Last: {quote.last_price} Bid: {quote.bid} Ask: {quote.ask}")
# P&L across all closed futures trades
pnl = client.calculate_futures_pnl()
print(f"Realized P&L: ${pnl:.2f}")
See the Futures documentation for full details.
Banking & Dividends
# Check linked bank accounts
accounts = client.get_bank_accounts()
# View transfer history
transfers = client.get_transfers()
# Initiate a deposit
transfer = client.initiate_transfer(
amount=500.00,
direction="deposit",
ach_relationship_url=accounts[0].url,
)
# Dividend history
dividends = client.get_dividends()
aapl_divs = client.get_dividends_by_symbol("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.add_to_watchlist(["NVDA", "TSLA"])
client.remove_from_watchlist(["TSLA"])
Markets & Trading Hours
# List available exchanges
markets = client.get_markets()
# Check if NYSE is open on a specific date
hours = client.get_market_hours("XNYS", "2026-03-30")
print(f"Open: {hours.is_open}, {hours.opens_at} โ {hours.closes_at}")
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
Acknowledgments
pyhood stands on the shoulders of the community that figured out Robinhood's unofficial API:
- robin_stocks 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
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyhood-0.5.0.tar.gz.
File metadata
- Download URL: pyhood-0.5.0.tar.gz
- Upload date:
- Size: 6.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82eb149f0bda8e5982060292f5fbe26f7b5011ed3c32fd0ae7cad07a9984b15a
|
|
| MD5 |
3e3e2d92268c4e1b1b9e6e71938acd42
|
|
| BLAKE2b-256 |
cd08210dfc92bd5eb757662370d154238e40aa30e136e839ae8b5f15bfd1bd09
|
Provenance
The following attestation bundles were made for pyhood-0.5.0.tar.gz:
Publisher:
publish.yml on jamestford/pyhood
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyhood-0.5.0.tar.gz -
Subject digest:
82eb149f0bda8e5982060292f5fbe26f7b5011ed3c32fd0ae7cad07a9984b15a - Sigstore transparency entry: 1193964052
- Sigstore integration time:
-
Permalink:
jamestford/pyhood@2d68b4d62d21635c23803c61049aecf7bc744e0b -
Branch / Tag:
refs/tags/v0.5.0 - Owner: https://github.com/jamestford
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@2d68b4d62d21635c23803c61049aecf7bc744e0b -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyhood-0.5.0-py3-none-any.whl.
File metadata
- Download URL: pyhood-0.5.0-py3-none-any.whl
- Upload date:
- Size: 41.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75a387992a29301b3f14a6f5067c956a1e5252648008e5dd026752786fe8f2fd
|
|
| MD5 |
000671b4ff00f148297ead6e8a4d1f1c
|
|
| BLAKE2b-256 |
18f27077bd1856fcb02e54f7672dcaac2d52243bb9707b30e7a596f3e40295fa
|
Provenance
The following attestation bundles were made for pyhood-0.5.0-py3-none-any.whl:
Publisher:
publish.yml on jamestford/pyhood
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyhood-0.5.0-py3-none-any.whl -
Subject digest:
75a387992a29301b3f14a6f5067c956a1e5252648008e5dd026752786fe8f2fd - Sigstore transparency entry: 1193964069
- Sigstore integration time:
-
Permalink:
jamestford/pyhood@2d68b4d62d21635c23803c61049aecf7bc744e0b -
Branch / Tag:
refs/tags/v0.5.0 - Owner: https://github.com/jamestford
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@2d68b4d62d21635c23803c61049aecf7bc744e0b -
Trigger Event:
release
-
Statement type: