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

# Domain Overview

> Semrush organic search overview: rank, organic keywords, traffic, traffic cost, and Adwords keywords.

Return the organic search overview for a domain in a given regional database: Rank, organic keyword count, organic traffic, organic traffic cost, and Adwords keyword count.

**Billing is per successful call**, \$0.09. Failed calls (4xx/5xx) are not charged.

⚠️ The response is **semicolon-delimited text**, not JSON — parse it as CSV-style rows.

Related: [`get_semrush-domain-rank-history`](/docs/api-reference/semrush/get_semrush-domain-rank-history), [`get_semrush-domain-organic-keywords`](/docs/api-reference/semrush/get_semrush-domain-organic-keywords).


## OpenAPI

````yaml openapi/semrush.json GET /semrush/domain-overview
openapi: 3.0.3
info:
  title: Semrush API
  version: 1.0.0
  description: >-
    Semrush competitive SEO intelligence routed through the AIsa gateway. Covers
    domain overview, backlinks overview and keyword overview, plus keyword
    research (difficulty, organic/paid results, broad-match, questions), domain
    analytics (rank history, organic/paid keywords, competitors,
    domain-vs-domain), URL keywords and the backlinks suite (backlinks,
    referring domains, anchors, indexed pages, competitors). Proxies the Semrush
    Analytics API; responses are Semrush native semicolon-delimited text with a
    header row. Row-billed endpoints charge per returned data row (header
    excluded), up to 20 rows per call.
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - BearerAuth: []
paths:
  /semrush/domain-overview:
    get:
      summary: Domain Overview
      description: >-
        Return the organic search overview for a domain in a given regional
        database: Rank, organic keyword count, organic traffic, organic traffic
        cost, and Adwords keyword count. Billed $0.09 per successful call;
        4xx/5xx are not charged. Response is semicolon-delimited text.
      operationId: get_semrush_domain_overview
      parameters:
        - name: domain
          in: query
          required: true
          description: Target domain, e.g. `ahrefs.com`.
          schema:
            type: string
        - name: database
          in: query
          required: false
          description: >-
            Regional database / country code. Defaults to `us`. Examples: `us`,
            `uk`, `cn`.
          schema:
            type: string
            default: us
      responses:
        '200':
          description: >-
            Semicolon-delimited overview:
            Database;Domain;Rank;OrganicKeywords;OrganicTraffic;OrganicCost;AdwordsKeywords.
          content:
            text/plain:
              schema:
                type: string
              example: us;ahrefs.com;1843;204139;1387538;4247450;679
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: AISA API Key

````