> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tapti.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Contents by User Account

> Fetches a list of content items (posts, videos, etc.) for a given user account.

<Info>
  This tool is part of the [Content Tools](./index) category.
</Info>

## Parameters

| Name              | Type   | Required | Description                                   |
| ----------------- | ------ | -------- | --------------------------------------------- |
| user\_account\_id | string | Yes      | The ID of the user account to get content for |
| limit             | number | No       | Maximum number of content items to return     |

## Example Request

<CodeGroup>
  ```json title="Request" theme={null}
  {
      "tool": "getContentsByUserAccountId",
      "params": {
          "user_account_id": "USER_ACCOUNT_ID",
          "limit": 10
      }
  }
  ```
</CodeGroup>

## Example Response

<CodeGroup>
  ```json title="Response" theme={null}
  {
      "content": [
          {
              "id": "content_123",
              "title": "My Post",
              "type": "INSTAGRAM_POST",
              "published_at": "2024-05-01T12:00:00Z",
              // ... other fields ...
          }
      ]
  }
  ```
</CodeGroup>

## Usage Notes

* Only content items belonging to the specified user account and tenant will be returned.
* Use the `limit` parameter to control pagination.

See the [Content Tools](./index) for more tools in this category.
