# 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>](/round-object/round_obj.md) objects

**Example:**

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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://hh-specs.handhistory.org/json-object/rounds.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
