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

# List Clicked Links

> Retrieve link click metrics and URLs for a campaign.

Retrieve statistics on URLs clicked by recipients in the campaign, including unique click counts and total click counts.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the campaign.
</ParamField>

### Response

<ResponseField name="data" type="array">
  <ResponseField name="url" type="string">The destination URL clicked.</ResponseField>
  <ResponseField name="clicks" type="number">Total number of clicks.</ResponseField>
  <ResponseField name="uniqueClicks" type="number">Number of unique recipient clicks.</ResponseField>
  <ResponseField name="lastClickedAt" type="string">Timestamp of the most recent click.</ResponseField>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.mailofly.com/api/v1/campaigns/cmp_123/clicked-links \
    -H "Authorization: Bearer mf_live_your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": [
      {
        "url": "https://example.com/pricing",
        "clicks": 452,
        "uniqueClicks": 389,
        "lastClickedAt": "2026-09-11T13:30:00Z"
      },
      {
        "url": "https://example.com/blog/v2",
        "clicks": 184,
        "uniqueClicks": 160,
        "lastClickedAt": "2026-09-11T12:45:00Z"
      }
    ]
  }
  ```
</ResponseExample>


## Related topics

- [What is email consent?](/guides/deliverability/email-consent.md)
- [Delivery statuses](/logs/delivery-statuses.md)
- [Event types](/webhooks/event-types.md)
- [Tracking](/domains/tracking.md)
- [Managing the Suppression List](/guides/deliverability/managing-the-suppression-list.md)
