> ## 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.

# Get a comment automation

> Retrieve a single comment automation by ID.

Returns the full details of one comment automation.

## Headers

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

## Path parameters

<ParamField path="id" type="integer" required>
  ID of the comment automation.
</ParamField>

## Response

<ResponseField name="data" type="object">
  The comment automation.

  <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>

    <ResponseField name="executor_ids" type="integer[]">
      Connected accounts that post comments.
    </ResponseField>

    <ResponseField name="comments" type="object[]">
      Comment content, each with a `text` field.
    </ResponseField>

    <ResponseField name="schedule" type="object[]">
      Posting windows with `day`, `start_time`, and `end_time`.
    </ResponseField>
  </Expandable>
</ResponseField>

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "id": 12,
      "name": "Post Engagement",
      "platform": "facebook",
      "status": 1,
      "limit": 30,
      "executor_ids": [101],
      "comments": [
        { "text": "Great post, {{first_name}}! Thanks for sharing." }
      ],
      "schedule": [
        { "day": "Monday", "start_time": "09:00", "end_time": "17:00" }
      ]
    }
  }
  ```

  ```json 404 theme={null}
  {
    "message": "Comment automation not found."
  }
  ```
</ResponseExample>
