Open Hand History
  • Overview
  • Guiding Principles
  • JSON Object
  • Storage Format
  • Standardized Hand History JSON
    • The Specification
    • spec_version
    • site_name
    • network_name
    • internal_version
    • tournament
    • tournament_info
    • game_number
    • start_date_utc
    • table_name
    • table_handle
    • table_skin
    • game_type
    • bet_limit
    • table_size
    • currency
    • dealer_seat
    • small_blind_amount
    • big_blind_amount
    • ante_amount
    • hero_player_id
    • flags
    • players
    • rounds
    • pots
    • tournament_bounties
  • Bet Limit Object
    • <bet_limit_obj>
      • bet_cap
      • bet_type
  • Player Object
    • <player_obj>
      • id
      • seat
      • name
      • display
      • starting_stack
      • player_bounty
      • is_sitting_out
  • Round Object
    • <round_obj>
      • id
      • street
      • cards
      • actions
  • Action Object
    • <action_obj>
      • action_number
      • player_id
      • action
      • amount
      • is_allin
      • cards
  • Pot Object
    • <pot_obj>
      • number
      • amount
      • rake
      • jackpot
      • player_wins
  • Player Wins Object
    • <player_wins>
      • player_id
      • win_amount
      • cashout_amount
      • cashout_fee
      • bonus_amount
  • Tournament Info Object
    • <tournament_info_obj>
      • tournament_number
      • name
      • start_date_utc
      • currency
      • buyin_amount
      • bounty_fee_amount
      • fee_amount
      • initial_stack
      • type
      • flags
      • speed
  • Tournament Bounty Object
    • <tournament_bounty_obj>
      • player_id
      • bounty_won
      • defeated_player_id
  • Speed Object
    • <speed_obj>
      • type
      • round_time
  • String Formats
    • version_string
    • card_string
  • Examples
    • Holdem cash hand (iPoker)
    • Holdem cash hand (PokerStars)
    • Omaha cash hand (WPN)
    • Omaha hi/lo cash hand (PokerStars)
    • Holdem cash hand (888)
    • Holdem tournament hand (888)
    • Holdem tournament hand (PokerStars)
    • Holdem tournament hand (iPoker)
  • Contact Us
    • Change Request Process
    • Support
  • CHANGE LOG
    • Change Log
Powered by GitBook
On this page

Was this helpful?

  1. Action Object
  2. <action_obj>

action

The action performed.

action

The action performed.

Type: string

Options:

  • "Dealt Cards": Player is dealt cards.

  • "Mucks Cards": The player mucks/doesn't show their cards.

  • "Shows Cards": The player shows their cards. Should be included in a "Showdown" round.

  • "Post Ante": The player posts an ante.

  • "Post SB": The player posts the small blind.

  • "Post BB": The player posts the big blind.

  • "Straddle": The player posts a straddle to buy the button.

  • "Post Dead": The player posts a dead blind.

  • "Post Extra Blind": The player posts any other type of blind.

  • "Fold": The player folds their cards.

  • "Check": The player checks.

  • "Bet": The player bets in an un-bet/unraised pot.

  • "Raise": The player makes a raise.

  • "Call": The player calls a bet/raise.

  • "Added Chips" - Player adds chips to his chip stack (cash game only).

  • "Sits Down" - Player sits down at a seat.

  • "Stands Up" - Player removes them self from the table.

  • "Add to Pot" - This can be a player or non-player action. Can be used when the site adds money/chips to the pot to stimulate action, for example. With this action "player_id" can be omitted or null if it is not related to a specific player.

"Bet" is not a valid pre-flop action.

Example:

The player posted the big blind:

"action": "Post BB"

Previousplayer_idNextamount

Last updated 7 months ago

Was this helpful?