> ## 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 an AI overview result



## OpenAPI

````yaml /api/openapi.yaml get /ai-search/results/{id}
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:
  /ai-search/results/{id}:
    get:
      tags:
        - AI Search
      summary: Get an AI overview result
      operationId: getAiSearchResult
      parameters:
        - $ref: '#/components/parameters/ResultId'
      responses:
        '200':
          description: AI overview result detail
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/ResultDetail'
                required:
                  - data
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    ResultId:
      name: id
      in: path
      required: true
      schema:
        type: string
        format: uuid
  schemas:
    ResultDetail:
      type: object
      properties:
        id:
          type: string
          format: uuid
        promptId:
          type: string
          format: uuid
        provider:
          type: string
        scrapedDate:
          type: string
        scrapedAt:
          type: string
        createdAt:
          type: string
        sources:
          type: array
          items:
            $ref: '#/components/schemas/ResultSource'
        ahrefsVolume:
          type:
            - number
            - 'null'
        rawResponse:
          type:
            - object
            - 'null'
          additionalProperties: true
      required:
        - id
        - promptId
        - provider
        - scrapedDate
        - scrapedAt
        - createdAt
        - sources
    ResultSource:
      type: object
      properties:
        url:
          type: string
        title:
          type: string
      required:
        - url
        - title
    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:
    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'
    NotFound:
      description: Resource not found
      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

````