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. Standardized Hand History JSON

The Specification

Standardized Hand History Specification.

Standardized Hand History specification

Type: Object

Format: JSON

Version: 1.4.7

Structure:

{"ohh":
  {
		"spec_version": version_string,
		"site_name": string,
		"network_name": string,
		"internal_version": version_string,
		"tournament": boolean
		"tournament_info": <tournament_info_obj>,
		"game_number": string,
		"start_date_utc": string,
		"table_name": string,
		"table_handle": string,
		"table_skin": string,
		"game_type": string,
		"bet_limit": <bet_limit_obj>,
		"table_size": integer,
		"currency": string,
		"dealer_seat": integer,
		"small_blind_amount": decimal,
		"big_blind_amount": decimal,
		"ante_amount": decimal,
		"hero_player_id": integer,
		"flags": [
			string,
			string
		],
		"players": [
			<player_obj>,
			<player_obj>
		],
		"rounds": [
			<round_obj>,
			<round_obj>
		],
		"pots": [
			<pot_obj>,
			<pot_obj>
		],
		"tournament_bounties": [
			<tournament_bounty_obj>,
			<tournament_bounty_obj>
		]
	}
}

Examples:

PreviousStorage FormatNextspec_version

Last updated 1 year ago

Was this helpful?

See examples.