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

# Get Keyword Overview

> Get keyword metrics for a list of keywords — search volume, CPC, competitive density, keyword difficulty, search intent, and SERP features

Get keyword metrics for a list of keywords — search volume, CPC, competitive density, keyword difficulty, search intent, and SERP features. Semrush requires a Markifact connection using an API key from a Semrush Business or Enterprise subscription.

|                      |                                |
| -------------------- | ------------------------------ |
| **App**              | SEMrush                        |
| **Operation ID**     | `semrush_get_keyword_overview` |
| **Type**             | Action                         |
| **Connection**       | `semrush` (required)           |
| **Credits per run**  | Free                           |
| **Agent / MCP tool** | Yes                            |

## Inputs

| Field            | Type                                | Required | Default | Description                                                                                                                                                                                     |
| ---------------- | ----------------------------------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `keywords`       | array of string or string           | Yes      | -       | Keywords to look up. Accepts a list or a newline/comma-separated string. Up to 100 keywords per request.                                                                                        |
| `database`       | string                              | No       | `us`    | Two-letter country code. E.g. us, uk, ca, au, de, fr, es, it, br. Defaults to 'us'.                                                                                                             |
| `export_columns` | array of string or SelectableOption | No       | -       | List of columns to return. Available: Ph (keyword), Nq (search volume), Cp (CPC), Co (competitive density), Nr (SERP results), Kd (keyword difficulty), In (search intent), Fk (SERP features). |
| `month`          | string                              | No       | -       | Monthly snapshot in YYYY-MM format (e.g. 2024-01), from 2012-01 up to the current month. Leave empty for the latest data.                                                                       |
| `limit`          | integer                             | No       | -       | Maximum number of rows to return.                                                                                                                                                               |

### SelectableOption

| Field   | Type   | Required | Default | Description |
| ------- | ------ | -------- | ------- | ----------- |
| `value` | string | Yes      | -       |             |
| `label` | string | Yes      | -       |             |

## Output

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

Returns one row per keyword with: date (YYYY-MM), keyword, searchVolume, cpc (USD), competition (0-100 density), serpResults, keywordDifficulty, searchIntent, serpFeatures.

**Fields**: `date`, `keyword`, `searchVolume`, `cpc`, `competition`, `serpResults`, `keywordDifficulty`, `searchIntent`, `serpFeatures`

**Example**:

```json theme={"dark"}
[
  {
    "date": "2026-05",
    "keyword": "seo tools",
    "searchVolume": 18100,
    "cpc": 12.5,
    "competition": 85,
    "keywordDifficulty": 72,
    "searchIntent": "COMMERCIAL,INFORMATIONAL"
  }
]
```
