> For the complete documentation index, see [llms.txt](https://hh-specs.handhistory.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hh-specs.handhistory.org/action-object/action_obj/cards.md).

# cards

#### cards

The cards involved in the action.

**Nullable:** true

{% hint style="info" %}
If no cards are involved in the action then the "cards" property can be omitted or set to null.
{% endhint %}

{% hint style="warning" %}
If less than the normal number of cards is known (for example if a player shows only one card when folding) then it is valid to list only the known card(s).
{% endhint %}

**Type:** array of [card\_string](/string-formats/card.md)

**Example:**

Eight of clubs and ten of clubs.

```javascript
"cards": [
    "8c",
    "Tc"
]
```

No cards.

```javascript
"cards": null
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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/action-object/action_obj/cards.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.
