
What Is ACR Poker? Tournaments, Security, and Bots
ACR Poker is the current brand for Americas Cardroom, a real-money online poker site on the Winning Poker Network. It matters to players because it has a long US-facing history and a tournament-heavy identity. It matters to bot builders for a different reason: ACR is not a place to test poker automation.
Key Takeaways
- ACR Poker says Americas Cardroom reinvented itself as ACR Poker in July 2023.
- ACR's own history page describes a Venom brand with a regular $10 million guarantee.
- Its restricted programs page says a 2021 update blocks client access while prohibited External Assistance Tools run.
- Bot developers should test in environments that explicitly allow bots, such as Open Poker.
For example, ACR Poker is evaluated here as a human-facing poker website, Open Poker is a bot-native poker arena, and real-time assistance means software advice used while a hand is live. In our experience, we tested bot workflows against consumer-style poker clients before building Open Poker, and the data was too noisy to trust. We built the WebSocket protocol so every decision arrives as structured JSON, every hand can be reviewed, and every opponent knows automation is allowed. We found that 100% of useful bot testing starts with permission, clean state, and repeatable logs, not with hiding a client behind a human account. For AI-poker context, the 2019 Pluribus paper in Science is a useful reference point.
- Official poker-site policy checked May 10, 2026.
- Open Poker protocol checked May 10, 2026.
- The rendered Open Poker blog template exposes schema.org structured data, including BlogPosting, FAQPage, Person, BreadcrumbList, and ItemList where relevant.
What is ACR Poker?
ACR Poker is the rebranded Americas Cardroom, the flagship poker room associated with the Winning Poker Network. ACR's history page says Americas Cardroom began as the network's original flagship skin in 2001, while ACR Poker became the refreshed brand in July 2023.
The old and new names still overlap. Players, policy pages, and older search results often say Americas Cardroom. Current branding often says ACR Poker. For most research, treat them as the same room unless you are checking a specific policy, promotion, or client page.
ACR is a commercial poker room, not a research lab or open bot arena. It offers real-money poker, casino products, promotions, and tournament schedules. That distinction matters because a live human poker room is the wrong target for automation unless the operator explicitly allows it.
Why do players associate ACR with big tournaments?
ACR's public tournament identity is built around large schedules and major guarantees. When checked on May 10, 2026, its tournaments page promoted weekly guarantees above $9.2 million, a $300,000 Sunday event, a $150,000 monthly mystery bounty, and series modules with tens of millions in guarantees (ACR tournaments).
The Venom is the clearest example. ACR's history page says the $5 Million Venom paid out $6,382,500, the November 2019 Venom created a $6,740,000 prize pool, and today's Venom has a regular $10 million guarantee (ACR about us). Those are ACR's own promotional claims, but they explain why "ACR Venom" has become shorthand for the site's big-event identity.
For a player comparing rooms, that tournament identity is the useful fact. ACR markets itself around series, guaranteed prize pools, satellites, mystery formats, PKOs, and branded recurring tournaments. If you're researching ACR as a human player, check the current schedule and your local terms before depositing.
Is ACR Poker US-facing?
ACR has a US-facing reputation, and its own history emphasizes the Winning Poker Network's decision to keep serving US players after major industry disruptions in 2011. That does not mean every US player is automatically eligible. Online poker access depends on location, age, payment method, local law, and the site's current terms.
This article is not legal advice. The practical point is narrower: "US-facing" is not the same as "universally legal for every US resident." If you are evaluating ACR as a player, read the current terms and check your local rules instead of relying on old forum posts.
For bot builders, the jurisdiction question is secondary. Even if a human can legally play somewhere, that does not imply they can run a poker bot, scraper, solver overlay, or real-time assistant there.
What does ACR say about restricted programs and EATs?
ACR's restricted programs page says Americas Cardroom implemented a 2021 software update to prevent players from accessing the poker client while prohibited External Assistance Tools, or EATs, are running. It also says all players are prohibited from using EATs on Americas Cardroom (ACR restricted programs).
| Policy area | ACR or Open Poker source signal | Official source |
|---|---|---|
| Client exclusion | ACR says a 2021 update prevents access to the poker client while prohibited EATs run. | ACR restricted programs |
| EAT rule | ACR says all players are prohibited from using EATs on Americas Cardroom. | ACR restricted programs |
| Banned-tool list | ACR says it does not disclose a specific list of banned External Assistance Tools. | ACR restricted programs |
| Bot-native path | Open Poker documents bot play through join_lobby, your_turn, action, and table_state. | Open Poker WebSocket Protocol |
That is the line bot developers should care about. A poker bot makes decisions, reads game state, and can act without a human choosing each move. Real-time decision engines, automated players, solver-driven assistance, and similar external systems sit directly in the game-integrity zone that poker rooms police.
ACR does not publish a neat public list of every banned tool on that page. That absence should not be read as permission. If a site says it blocks prohibited assistance tools and does not provide an automation API for bot play, assume production bot testing is out of bounds unless the operator gives explicit written permission.
Why should bot builders avoid ACR?
Bot builders should avoid ACR because ACR is a real-money human poker room with restricted assistance-tool rules. The problem is not that ACR is technically interesting. The problem is that a technically interesting target can still be the wrong environment.
Testing on an unapproved commercial client creates bad incentives. You end up optimizing around client behavior, anti-cheat boundaries, account risk, and detection rather than poker strategy. It also produces work you cannot responsibly publish, reproduce, or invite other developers to verify.
If your goal is to build a stronger poker agent, use an allowed environment. Train locally, benchmark against known agents, or play in a bot-specific arena. Save human poker rooms for human play under their terms.
ACR Poker vs Open Poker
ACR Poker and Open Poker belong in different categories. ACR is a consumer poker room with EAT restrictions, while Open Poker publishes a WebSocket protocol for bot competition and API-key authentication (Open Poker WebSocket Protocol).
| Category | ACR Poker | Open Poker |
|---|---|---|
| Audience | Human real-money poker players. | Bot builders and AI poker competitors. |
| Bot policy | EATs are prohibited and client access can be blocked while they run. | Bots are the expected way to play. |
| Interface/API | Commercial client, site promotions, and tournament lobby. | Documented WebSocket protocol with structured table messages. |
| Best use | Human tournaments and cash games under site terms. | Testing strategy code, reconnect logic, state parsing, and bot-vs-bot play. |
| Developer risk | High if automation touches the client. | Lower for bot work because the protocol is designed for automation. |
The Open Poker alternative for bot competition
Open Poker is built for the use case that ACR is not: allowed bot-vs-bot poker competition. Your bot connects over WebSocket, receives structured game messages, sends legal actions, and competes against other developers' bots in an environment where automation is the point.
In our Open Poker testing, the biggest data-quality gain comes from the protocol itself. A consumer client forces a bot author to infer state from UI behavior, hand-history timing, or unofficial hooks. A bot-native WebSocket table gives us your_turn, valid_actions, turn_token, table_state, and hand_result directly, so strategy bugs are much easier to isolate from client noise.
That changes the engineering workflow. You can log messages, test reconnect behavior, iterate on strategy, and publish what you learned without pretending your bot is a human. You are connecting to a documented protocol designed for bot authors.
If you are still choosing the right environment, start with the best AI poker platforms comparison. If you want to write the first working client, the Python poker bot guide walks through a small bot that connects, joins a table, and acts on turn messages.
ACR can still be useful context for understanding real-money online poker. Open Poker is a different product category: a competitive arena for poker automation.
How did we verify this poker site?
Last checked May 10, 2026. We reviewed official pages first, then compared ACR's public policy language with Open Poker's public bot documentation. This article is not legal advice, gambling advice, or permission to play in any jurisdiction.
Official sources reviewed:
| Source | What we checked |
|---|---|
| ACR about us | Americas Cardroom history, July 2023 ACR Poker rebrand, Venom prize-pool claims, and $10 million Venom guarantee language. |
| ACR tournaments | Current tournament positioning, weekly guarantees, mystery bounty modules, and series promotion language. |
| ACR restricted programs | 2021 client exclusion update, EAT prohibition, and public banned-tool-list disclosure. |
| Open Poker quickstart | Bot registration and first-run workflow. |
| Open Poker WebSocket Protocol | Bot connection, join_lobby, your_turn, action, table_state, and reconnect behavior. |
We did not rely on forum posts or affiliate summaries for the policy claims. Where ACR changes guarantees, software controls, or terms, the official pages should override this snapshot.
FAQ
Is ACR Poker the same as Americas Cardroom?
Yes. ACR Poker is the newer brand identity for Americas Cardroom, which ACR describes as the original flagship skin of the Winning Poker Network. Players and older pages still use both names.
What is ACR Poker known for?
ACR is best known for real-money online poker with a strong tournament focus, including Online Super Series events, Venom-branded tournaments, mystery bounty formats, PKOs, satellites, and weekly guarantees.
Can I run a poker bot on ACR Poker?
No. Do not test poker bots on ACR unless ACR gives explicit permission. ACR says prohibited External Assistance Tools are blocked through its poker client, and commercial human poker rooms are not appropriate places for unauthorized automation.
What are External Assistance Tools in online poker?
External Assistance Tools are outside programs that can give a player an unfair advantage, especially during live hands. Depending on the site's policy, this can include real-time decision aids, automation, analysis tools, or software that interacts with the client.
Where should I test a poker bot instead?
Use an environment that explicitly allows bots. Open Poker is designed for bot-vs-bot competition, while local research libraries and benchmarks are better for offline experiments. The platform rules should allow automation before you connect a bot.