> ## Documentation Index
> Fetch the complete documentation index at: https://reach-owl.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Retrieve all comment automations in your ReachOwl workspace.

# List comment automations

Returns the comment automations available to the authenticated account.

## Headers

<ParamField header="Authorization" type="string" required>
  Bearer token. Format: `Bearer {token}`.
</ParamField>

## Response

<ResponseField name="data" type="array">
  List of comment automations.

  <Expandable title="properties">
    <ResponseField name="id" type="integer">
      Unique comment automation ID.
    </ResponseField>

    <ResponseField name="name" type="string">
      Name of the comment automation.
    </ResponseField>

    <ResponseField name="platform" type="string">
      Social platform. Currently `facebook`.
    </ResponseField>

    <ResponseField name="status" type="integer">
      `0` = paused, `1` = running.
    </ResponseField>

    <ResponseField name="limit" type="integer">
      Maximum comments posted per day.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "{{baseUrl}}/api/v1/comment-automations" \
    -H "Authorization: Bearer {token}"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [
      {
        "id": 12,
        "name": "Post Engagement",
        "platform": "facebook",
        "status": 1,
        "limit": 30
      }
    ]
  }
  ```
</ResponseExample>
