# Semrush Authority Score Scraper — Backli — Quick Start

**Use case:** 

Get Semrush Authority Score, backlinks, referring domains, and organic traffic estimates for any domain via Semrush's free Website Authority Checker. No Semrush account, login, or paid API needed. Use it as an MCP server in Claude, ChatGPT & AI agents.

## Input

```json
{
  "domains": [
    "hubspot.com"
  ],
  "maxDomains": 1,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "authority_score": {
    "label": "Authority Score",
    "format": "number"
  },
  "backlinks": {
    "label": "Backlinks",
    "format": "number"
  },
  "referring_domains": {
    "label": "Referring Domains",
    "format": "number"
  },
  "organic_traffic_monthly": {
    "label": "Monthly Organic Traffic",
    "format": "number"
  },
  "health_label": {
    "label": "Backlink Health",
    "format": "string"
  },
  "data_as_of": {
    "label": "Data As Of",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Semrush Scraper: Authority Score, Backlinks & Traffic](https://apify.com/themineworks/semrush-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/themineworks/semrush-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/themineworks/semrush-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
