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

# Backlinks

> Individual backlink records pointing at a target (source, target, anchor).



## OpenAPI

````yaml openapi/semrush.json GET /semrush/backlinks
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/backlinks:
    get:
      summary: Backlinks
      description: >-
        Individual backlink records pointing at a target (source, target,
        anchor). Billed per returned data row at $0.36 per row (up to 20 rows;
        header row excluded); 4xx/5xx are not charged. Response is
        semicolon-delimited text.
      operationId: semrushBacklinks
      parameters:
        - name: target
          in: query
          required: true
          description: Target domain or URL.
          schema:
            type: string
            example: ahrefs.com
        - name: target_type
          in: query
          required: true
          description: One of `root_domain`, `domain`, or `url`.
          schema:
            type: string
            example: root_domain
      responses:
        '200':
          description: 'Semicolon-delimited rows. Header: `source_url;target_url;anchor`.'
          content:
            text/plain:
              schema:
                type: string
              example: >-
                source_url;target_url;anchor

                https://example.com/post;https://ahrefs.com/blog/agentic-marketing/;Agentic
                Marketing
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: AISA API Key

````