Robinhood status: trading issues and outage reports
No problems detected
If you are having issues, please submit a report below.
Robinhood is a free-trading app that lets investors trade stocks, options, exchange-traded funds and cryptocurrency without paying commissions or fees.
Problems in the last 24 hours
The graph below depicts the number of Robinhood reports received over the last 24 hours by time of day. When the number of reports exceeds the baseline, represented by the red line, an outage is determined.
At the moment, we haven't detected any problems at Robinhood. Are you experiencing issues or an outage? Leave a message in the comments section!
Most Reported Problems
The following are the most recent problems reported by Robinhood users through our website.
- Trading platform (43%)
- Website (36%)
- Login (14%)
- Withdrawals (7%)
Live Outage Map
The most recent Robinhood outage reports came from the following cities:
| City | Problem Type | Report Time |
|---|---|---|
|
|
Login | 24 days ago |
|
|
Trading platform | 24 days ago |
|
|
Trading platform | 24 days ago |
|
|
Trading platform | 24 days ago |
|
|
Trading platform | 24 days ago |
|
|
Website | 24 days ago |
Community Discussion
Tips? Frustrations? Share them here. Useful comments include a description of the problem, city and postal code.
Beware of "support numbers" or "recovery" accounts that might be posted below. Make sure to report and downvote those comments. Avoid posting your personal information.
Robinhood Issues Reports
Latest outage, problems and issue reports in social media:
-
jejela (@texmaxie) reported@merts_eth @RobinhoodApp @vladtenev damn
-
Lena Crypto (@0o20_) reported@PepeOnRobinhood @RobinhoodApp Very promising project. Let's network ๐ฅ
-
KC Abramson (@kcabrams) reported@vladtenev @RobinhoodApp That's what I'm talking about Vlad! I just need one more service out of you guys. SDIRA / self directed IRA ๐ Once this happens I will literally close every other financial institution account and move them all to Rh
-
travis jones (@travjones2425) reported@RobinhoodApp please add an alert I can set for my totally pro percentage up or down In a day. Retail is busy canโt check my pro every se
-
GP22 (@GGPP223344) reported@RobinhoodApp @SoFi please use Algorand for cheap, fast instant settlement for your tokenization. Robinhood didn't do their research and messed up real bad
-
The Atypical Investor (@atypinvestor) reported@RobinhoodApp Next up, very shortly after the response from Robinhood, I received an email from @public or, rather, I should say an AI agent at Public. This AI agent stated that it could help me with my questions. Unfortunately, on the very first question, it said, "I don't have that specific information" about what I asked. That's not helpful. The other two questions it answered well. In fact, if I were rating the AI for answering questions, formatting the response, etc., I'd give it high marks. However, it didn't answer my first question, and it didn't give me any other way to contact anyone in order to do so and, therefore, was ultimately not a satisfactory reply, either.
-
Reggie (@Reggie994509) reported@TheSalonDon Good to know @RobinhoodApp wtf???
-
vinny nogaro (@vindude926) reported@RobinhoodApp Earth is a globe You are stupid
-
Max Uper (@uper_max) reported@Not_A_De_Gen @RobinhoodApp The problem is in what you call a day-1 ecosystem success: all the same names getting paid by another chain to deploy on a day-1 and milk mercenaries bridging in for a dream of the next big airdrop No doubt RH has got higher chances than other corpochains to sustain a market share and itโs completely reasonable to own the chain, but I donโt see why anyone should be too much excited besides their shareholders
-
Richard Hume (@w00pey) reported@RobinhoodApp How does the selection algorithm work? Iโm genuinely interested. Iโve been on the waitlist for close to a year, if not more. RH account holder for years, RH Gold member, perfect credit - yet still no invite. Iโve even reached out to Support on X, and nothing :-(
-
DoubleOGMadMan (@DoubleOgMadMan) reported@medonchain @RobinhoodApp 15 mill volume in 5 hours not to bad
-
Just Traverso (@traversoooo) reported@stkmarktswinger @RobinhoodApp @RobinhoodApp had been crooks! Worst broker everrrrr!
-
Emerald (@Emeraldxyzz) reported@SlickBTC @RobinhoodApp @robinhoodkittie I hope they fix the refund part, otherwise looking good.
-
Known Xd (@0xKnownxd) reported@femi_themayor @RobinhoodApp well it happens Sometimes you hesitate to pull the trigger I am not particularly bullish on robinhood after the nft incident but let's see if anything else come
-
Nicholas Bardy (@NicholasBardy) reported@NickADobos @RobinhoodApp You're basically just telling it to be high beta in a bullmarket. will come back down just as hard I drive all my investing with AI, but it's very easy to fool yourself
-
img_101 (@101Img) reported@2012bloggers @RobinhoodApp Robinhood sells retail data to the shorts. Terrible
-
haminthepan (@iagadanight) reported@martypartymusic How many times was @RobinhoodApp hacked how about the app shut down???
-
iamng (@iamng_eth) reported@crypto_condom @RobinhoodApp UNI is so much down that longer term R/R looks good. But buying that chart in crypto makes you question if you have a mental illness.
-
Mary Alan (@stone_john19) reported@RobinhoodApp Iโm having issues with my robinhood account please I need assistance
-
vik โก๏ธ (@vscorrpio) reportedfound an interesting honeypot ($RIALTO) on @RobinhoodApp today. i aped it myself, got drained, felt pretty stupid, so i figured iโd reverse it. turns out it was a pretty clean allowance bypass, and you donโt see those every day. CA: 0xefd3db0271aa579b8f9f1e4ab91a9d17fea1faa9 attacker helper: 0x5e3c1C6F90d35499C40A5f5769822AF2a631d702 attacker: 0x281FF81dF0Eca1F3F7Ba2A48499c7A83D216a2A8 both contracts were unverified, so most of the reversing was done with a mix of decompilers, AI, and manual analysis. normally an ERC20 works like this: - alice owns tokens. - alice calls approve(bob, 100). - the contract stores that allowance. - bob can now call transferFrom(alice, someoneElse, 100). without that approval, transferFrom should revert. thatโs basically the entire security model behind ERC20 allowances. on $RIALTO, transferFrom has another branch. before it checks the allowance, it loads a value from a hidden mapping in storage slot 0 using msg.sender as the key. if that value is non-zero, the allowance check is skipped completely. roughly: if (hidden[msg.sender] != 0) { // skip allowance check } else { require(allowance[from][msg.sender] >= amount); } the attacker helper contract had hidden[attacker] = 0x64. that single storage value effectively made it a privileged spender. it could call transferFrom(holder, attacker, amount) against any holder without ever receiving an approval from that holder. i also suspect this has a decent chance of slipping past a lot of automated bytecode scanners. most quick scanners look for obvious blacklist logic, owner mints, tax changes, or suspicious selectors. this one hides inside an otherwise normal-looking transferFrom implementation. they were also actively market making the token. volume looked organic, there were real-looking sells, larger buys getting sold into, then the chart recovered again. the price action looked surprisingly legitimate even though the whole thing was all fake. since @RobinhoodApp is only on day 2, stuff like this was bound to show up sooner or later. security tooling and risk scoring on new chains usually takes time to catch up, so donโt blindly trust green checkmarks on terminals like @BasedBot which btw great job for working so well on day0 when nobody else was around stay safe out there.
-
Adam Back (@adam3us) reported@BitPaine probably defi guys, magical thinkers about leverage... robinhood caps leverage at 2x. though they do have volatility and concentration related variable maintenance margin. so they could be pre-emptively squeezing $STRC margin requirements - @RobinhoodApp users could comment.
-
0xjayfi (@0xjayfi) reported@yichuan_drive @Lighter_xyz @RobinhoodApp Damn don't remind me of the chart. I don't want to check that chart. My locked tokens
-
Ricky Everett (@reverett1234) reported@RobinhoodApp After GameStop, where you disabled buys to protect institutional investors from your "Users". You need to **** right off.
-
ไธๅทdrive ๐ด (@yichuan_drive) reported@0xjayfi @Lighter_xyz @RobinhoodApp hahaha, it's 0,046 if I'm not mistaken... Fluffles apparently down... Echo is close
-
๐ช RandCorp #RareEvo26 (@RareRandCorp) reported@USDhodler @claudeai @RobinhoodApp There are a few extra steps to ask Claude to help. I have a smooth brain and it gave me all the steps to make it happen.
-
๐ด๐๐๐๐๐๐๐ ๐ฌ๐ญ๐ฆ(PropAMM dealer) (@Mawuko) reported@armaniferrante @RobinhoodApp Hey Armani, when can we expect first-party interop support for Backpack Tokenised Stocks? Want to be able to bridge them over for EVM venues
-
Benthere Dunn That (@behthere) reported@RobinhoodApp Show me my stocks and etfs, NOT my crypto in my daily chart! Im moving my crypto because you idiots cant or won't give me that option. ****** platform where apps don't work and customer support is **** tier .
-
Native (@native_fi) reported@RobinhoodApp Proud to support from day 1 ๐
-
Baggy (@Baggyfactory) reported@XbtShark @RobinhoodApp No brainer, people are slow, this is the next one
-
HotDawg (@HotDawgFingers) reported@ChainLinkGod @RobinhoodApp @chainlink So the price must be down by at least 20%