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



## 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 organic overview, backlinks overview, and keyword overview. Proxies
    the Semrush Analytics API; responses are returned as Semrush native
    semicolon-delimited text.
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: semrushDomainOverview
      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

````