> ## 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 Domain Overview

> Get a high-level SEO snapshot for one or more domains — rank, organic keywords, organic traffic, organic cost, and paid (AdWords) metrics

Get a high-level SEO snapshot for one or more domains — rank, organic keywords, organic traffic, organic cost, and paid (AdWords) metrics. Semrush requires a Markifact connection using an API key from a Semrush Business or Enterprise subscription.

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

## Inputs

| Field            | Type                                | Required | Default | Description                                                                                                                                                                                                                                       |
| ---------------- | ----------------------------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `domains`        | array of string or string           | Yes      | -       | Domains to look up (e.g. example.com). Accepts a list or a newline/comma-separated string. One row is returned per domain.                                                                                                                        |
| `database`       | string                              | No       | `us`    | Regional database (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: Db (database), Dn (domain), Rk (rank), Or (organic keywords), Ot (organic traffic), Oc (organic cost), Ad (adwords keywords), At (adwords traffic), Ac (adwords cost), Sh (PLA keywords), Sv (PLA uniques). |
| `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 domain with metrics: database, domain, rank, organicKeywords, organicTraffic, organicCost, adwordsKeywords, adwordsTraffic, adwordsCost, plaKeywords, plaUniques.

**Fields**: `database`, `domain`, `rank`, `organicKeywords`, `organicTraffic`, `organicCost`, `adwordsKeywords`, `adwordsTraffic`, `adwordsCost`, `plaKeywords`, `plaUniques`

**Example**:

```json theme={"dark"}
[
  {
    "domain": "apple.com",
    "rank": 25,
    "organicKeywords": 1500000,
    "organicTraffic": 45000000,
    "organicCost": 32000000,
    "adwordsKeywords": 1200
  }
]
```
