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

# Review Group Insights Evidence Route

> Page the verified evidence behind one platform-scoped matrix cell.



## OpenAPI

````yaml /openapi.json post /api/v1/brands/{brand_id}/brand-intelligence/review-group-insights/evidence
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brands/{brand_id}/brand-intelligence/review-group-insights/evidence:
    post:
      tags:
        - Brand Reviews
        - Brand Reviews
      summary: Review Group Insights Evidence Route
      description: Page the verified evidence behind one platform-scoped matrix cell.
      operationId: >-
        review_group_insights_evidence_route_api_v1_brands__brand_id__brand_intelligence_review_group_insights_evidence_post
      parameters:
        - name: brand_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Brand Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReviewAspectEvidenceRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReviewAspectEvidencePage'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ReviewAspectEvidenceRequest:
      properties:
        advertiser_id:
          type: string
          format: uuid
          title: Advertiser Id
        platform:
          type: string
          enum:
            - trustpilot
            - google
          title: Platform
        aspect:
          type: string
          maxLength: 100
          minLength: 1
          title: Aspect
        sentiment:
          type: string
          enum:
            - positive
            - negative
          title: Sentiment
        limit:
          type: integer
          maximum: 50
          minimum: 1
          title: Limit
          default: 20
        offset:
          type: integer
          minimum: 0
          title: Offset
          default: 0
      type: object
      required:
        - advertiser_id
        - platform
        - aspect
        - sentiment
      title: ReviewAspectEvidenceRequest
      description: One bounded page behind a platform-scoped matrix cell.
    ReviewAspectEvidencePage:
      properties:
        total:
          type: integer
          minimum: 0
          title: Total
          default: 0
        limit:
          type: integer
          maximum: 50
          minimum: 1
          title: Limit
        offset:
          type: integer
          minimum: 0
          title: Offset
          default: 0
        has_more:
          type: boolean
          title: Has More
          default: false
        items:
          items:
            $ref: '#/components/schemas/ReviewAspectEvidenceItem'
          type: array
          maxItems: 50
          title: Items
      type: object
      required:
        - limit
      title: ReviewAspectEvidencePage
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ReviewAspectEvidenceItem:
      properties:
        review_id:
          type: string
          format: uuid
          title: Review Id
        sentiment:
          type: string
          enum:
            - positive
            - negative
          title: Sentiment
        evidence:
          type: string
          maxLength: 300
          minLength: 1
          title: Evidence
        sub_theme:
          anyOf:
            - type: string
              maxLength: 60
            - type: 'null'
          title: Sub Theme
        platform:
          type: string
          enum:
            - trustpilot
            - google
          title: Platform
        rating:
          type: number
          maximum: 5
          minimum: 1
          title: Rating
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        body:
          anyOf:
            - type: string
            - type: 'null'
          title: Body
        reviewer_name:
          anyOf:
            - type: string
              maxLength: 255
            - type: 'null'
          title: Reviewer Name
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Verified
        reviewed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Reviewed At
        source_url:
          type: string
          maxLength: 2048
          minLength: 1
          title: Source Url
      type: object
      required:
        - review_id
        - sentiment
        - evidence
        - platform
        - rating
        - source_url
      title: ReviewAspectEvidenceItem
      description: Safe review metadata plus the classifier-verified supporting span.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````