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

# Get recent link building backlinks

> Returns recent backlink entries for a selected project, or backlink counts grouped by project when `project` is omitted.



## OpenAPI

````yaml /api/openapi.yaml get /domain-research/overview/backlinks
openapi: 3.1.0
info:
  title: Beeze API
  version: v1
  description: >
    External Beeze API for pricing intelligence, domain research, AI Search, and
    integrations.
servers:
  - url: https://api.beeze.io/v1
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: AI Search
    description: Results, visibility, sources, competitors, prompts, and tags
  - name: Domain research
    description: Pricing intelligence, backlinks, prospects, overview stats, and trends
  - name: Integrations
    description: Usage for connected third-party integrations
paths:
  /domain-research/overview/backlinks:
    get:
      tags:
        - Domain research
      summary: Get recent link building backlinks
      description: >-
        Returns recent backlink entries for a selected project, or backlink
        counts grouped by project when `project` is omitted.
      operationId: getOutreachOverviewBacklinks
      parameters:
        - $ref: '#/components/parameters/ProjectOptional'
        - $ref: '#/components/parameters/Owner'
        - $ref: '#/components/parameters/Locale'
        - $ref: '#/components/parameters/FromDate'
        - $ref: '#/components/parameters/ToDate'
        - $ref: '#/components/parameters/PositiveLimit'
      responses:
        '200':
          description: Recent backlink entries or grouped project backlink counts
          content:
            application/json:
              schema:
                oneOf:
                  - type: array
                    items:
                      $ref: '#/components/schemas/OutreachBacklinkEntry'
                  - type: array
                    items:
                      $ref: '#/components/schemas/OutreachProjectBacklinkCount'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
components:
  parameters:
    ProjectOptional:
      name: project
      in: query
      required: false
      schema:
        type: string
        minLength: 1
      description: >-
        Project identifier. Accepts project ID, slug, or name within the active
        workspace. If the project name is ambiguous in that workspace, use the
        project slug or project ID. Public project-scoped routes also require
        globally unique project names across workspaces.
    Owner:
      name: owner
      in: query
      required: false
      schema:
        type: string
      description: Filter by responsible person
    Locale:
      name: locale
      in: query
      required: false
      schema:
        type: string
      description: Filter by locale or market code
    FromDate:
      name: from
      in: query
      required: false
      schema:
        type: string
        format: date
      description: Start date in YYYY-MM-DD format
    ToDate:
      name: to
      in: query
      required: false
      schema:
        type: string
        format: date
      description: End date in YYYY-MM-DD format
    PositiveLimit:
      name: limit
      in: query
      required: false
      schema:
        type: integer
        minimum: 1
      description: Positive result limit
  schemas:
    OutreachBacklinkEntry:
      type: object
      properties:
        responsiblePerson:
          type: string
        finalPrice:
          type: number
        project:
          type: string
        dateReceived:
          type: string
        metrics:
          $ref: '#/components/schemas/OutreachBacklinkMetrics'
        links:
          $ref: '#/components/schemas/OutreachBacklinkLinks'
      required:
        - responsiblePerson
        - finalPrice
        - project
        - dateReceived
        - metrics
        - links
    OutreachProjectBacklinkCount:
      type: object
      properties:
        project:
          type: string
        backlinkCount:
          type: integer
        latestBacklinkDate:
          type:
            - string
            - 'null'
      required:
        - project
        - backlinkCount
        - latestBacklinkDate
    OutreachBacklinkMetrics:
      type: object
      properties:
        domainTraffic:
          type: number
        domainRating:
          type: number
      required:
        - domainTraffic
        - domainRating
    OutreachBacklinkLinks:
      type: object
      properties:
        domain:
          type: string
        article:
          type: string
          format: uri
      required:
        - domain
        - article
    Problem:
      type: object
      properties:
        type:
          type: string
        title:
          type: string
        status:
          type: integer
        detail:
          type: string
        code:
          type: string
        requestId:
          type: string
        instance:
          type: string
      required:
        - status
        - detail
        - code
  responses:
    BadRequest:
      description: Invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Problem'
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Problem'
    Forbidden:
      description: Missing plan access, feature access, or workspace access
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Problem'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for external Beeze API access

````