# rounds

#### rounds

An array of \<round\_obj> objects betting rounds that occurred within the hand.

{% hint style="warning" %}
Every hand must have one round 0 (Preflop).
{% endhint %}

{% hint style="warning" %}
Any showdown information such as a player showing cards or mucking known cards should be included in a "Showdown" round.\
Mucking without card information can be omitted and does not require a Showdown round.
{% endhint %}

**Type:** array of [\<round\_obj>](https://hh-specs.handhistory.org/round-object/round_obj) objects

**Example:**

```javascript
"rounds": [
    <round_obj>,
    <round_obj>,
    <round_obj>
]
```
