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

> List the keywords tracked in an Ahrefs Rank Tracker project with their country, location, language and tags

List the keywords tracked in an Ahrefs Rank Tracker project with their country, location, language and tags. Free: does not consume API units. Use ahrefs\_manage\_tracked\_keywords to add, remove or tag keywords and ahrefs\_get\_rank\_tracker\_overview for their rankings.

|                      |                                |
| -------------------- | ------------------------------ |
| **App**              | Ahrefs                         |
| **Operation ID**     | `ahrefs_list_tracked_keywords` |
| **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 keyword: keyword, location, location\_id, language, language\_code, tags (comma-separated).

**Fields**: `keyword`, `location`, `location_id`, `language`, `language_code`, `tags`

**Example**:

```json theme={"dark"}
[
  {
    "keyword": "marketing audit",
    "location": "United States",
    "location_id": 2840,
    "language": "English",
    "language_code": "en",
    "tags": "brand"
  }
]
```
