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

# List comment automation executions

> Retrieve the execution history of a comment automation.

Returns the runs recorded for a comment automation. Use it to audit what was posted, when it ran, and whether it succeeded.

## 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="array">
  List of executions.

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

    <ResponseField name="status" type="string">
      Result of the execution, for example `success` or `failed`.
    </ResponseField>

    <ResponseField name="comment" type="string">
      The comment text that was posted.
    </ResponseField>

    <ResponseField name="executed_at" type="string">
      ISO 8601 timestamp of the run.
    </ResponseField>
  </Expandable>
</ResponseField>

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [
      {
        "id": 501,
        "status": "success",
        "comment": "Great post, Sarah! Thanks for sharing.",
        "executed_at": "2026-09-24T09:15:00Z"
      }
    ]
  }
  ```
</ResponseExample>
