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

# List Tracked Competitors

> List the competitors tracked in an Ahrefs Rank Tracker project with their target mode

List the competitors tracked in an Ahrefs Rank Tracker project with their target mode. Free: does not consume API units. Use ahrefs\_manage\_tracked\_competitors to add or remove competitors.

|                      |                                   |
| -------------------- | --------------------------------- |
| **App**              | Ahrefs                            |
| **Operation ID**     | `ahrefs_list_tracked_competitors` |
| **Type**             | Action                            |
| **Connection**       | `ahrefs` (required)               |
| **Credits per run**  | Free                              |
| **Agent / MCP tool** | Yes                               |

## Inputs

| Field        | Type                 | Required | Default | Description                                                                                               |
| ------------ | -------------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------- |
| `project_id` | string or SelectItem | Yes      | -       | The Rank Tracker project (numeric ID from the Ahrefs project URL). Use ahrefs\_list\_projects to find it. |

### SelectItem

| Field   | Type   | Required | Default | Description                                                                                          |
| ------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------- |
| `value` | string | Yes      | -       | The value of the selectable item.                                                                    |
| `label` | string | Yes      | -       | The label of the selectable item, used for display purposes. If not provided, defaults to the value. |

## Output

**Type**: `List[Dict]`

Returns one row per tracked competitor: url, mode.

**Fields**: `url`, `mode`

**Example**:

```json theme={"dark"}
[
  {
    "url": "semrush.com/",
    "mode": "subdomains"
  }
]
```
