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

# Get Brand Perception Objection Sources

> The sources AI models retrieved when asked about one objection. Data is aggregated across all objection runs and has no date range. An unknown objection returns an empty result.



## OpenAPI

````yaml https://api.peec.ai/customer/v1/openapi/json get /brand-perception/objection-sources
openapi: 3.0.3
info:
  title: Peec AI Customer API
  description: Development documentation
  version: 1.0.0
  contact:
    name: Peec AI Team
    email: support@peec.ai
servers:
  - url: https://api.peec.ai/customer/v1
security: []
paths:
  /brand-perception/objection-sources:
    get:
      tags:
        - Brand Perception
      summary: Get Brand Perception Objection Sources
      description: >-
        The sources AI models retrieved when asked about one objection. Data is
        aggregated across all objection runs and has no date range. An unknown
        objection returns an empty result.
      operationId: getBrand-perceptionObjection-sources
      parameters:
        - name: project_id
          in: query
          required: false
          schema:
            description: Required if using a company api key
            example: or_f45b94ba-5e35-4982-93ed-285e72ee14eb
            type: string
        - name: objection
          in: query
          required: true
          schema:
            type: string
            minLength: 1
            example: Too expensive
            description: The objection name exactly as returned by the objections endpoint.
        - name: model_channel_ids
          in: query
          required: false
          schema:
            type: array
            items:
              type: string
              enum:
                - openai-0
                - openai-1
                - qwen-0
                - openai-2
                - perplexity-0
                - perplexity-1
                - google-0
                - google-1
                - google-2
                - google-3
                - google-4
                - anthropic-0
                - anthropic-1
                - deepseek-0
                - meta-0
                - meta-1
                - xai-0
                - xai-1
                - microsoft-0
                - amazon-0
                - mistral-0
                - mistral-1
        - name: order_by
          in: query
          required: false
          schema:
            description: >-
              Sort results by one or more fields. Multiple entries create a
              multi-key sort. Direction defaults to desc. When omitted, a
              default ordering is applied.
            example:
              - field: occurrences
                direction: desc
            type: array
            items:
              type: object
              properties:
                field:
                  type: string
                  enum:
                    - occurrences
                    - retrievals
                    - citation_rate
                direction:
                  default: desc
                  type: string
                  enum:
                    - asc
                    - desc
              required:
                - field
        - name: limit
          in: query
          required: false
          schema:
            default: 1000
            type: integer
            minimum: 1
            maximum: 10000
        - name: offset
          in: query
          required: false
          schema:
            default: 0
            type: integer
            minimum: 0
            maximum: 9007199254740991
      responses:
        '200':
          description: Response for status 200
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        url:
                          type: string
                        title:
                          nullable: true
                          type: string
                        domain:
                          type: string
                        url_classification:
                          type: string
                        domain_classification:
                          type: string
                        occurrences:
                          type: number
                        retrievals:
                          type: number
                        citation_rate:
                          type: number
                      required:
                        - url
                        - title
                        - domain
                        - url_classification
                        - domain_classification
                        - occurrences
                        - retrievals
                        - citation_rate
                  total_count:
                    type: number
                required:
                  - data
                  - total_count
      security:
        - APIKeyHeader: []
        - APIKeyQuery: []
        - BearerAuth: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    APIKeyQuery:
      type: apiKey
      in: query
      name: api_key
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````