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

# Get Competitor Social Overview

> Latest organic-social metrics per tracked competitor; YouTube first.



## OpenAPI

````yaml /openapi.json get /api/v1/brands/{brand_id}/dashboards/competitor-social
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brands/{brand_id}/dashboards/competitor-social:
    get:
      tags:
        - Dashboards
        - Dashboards
      summary: Get Competitor Social Overview
      description: Latest organic-social metrics per tracked competitor; YouTube first.
      operationId: >-
        get_competitor_social_overview_api_v1_brands__brand_id__dashboards_competitor_social_get
      parameters:
        - name: brand_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Brand Id
        - name: platform
          in: query
          required: false
          schema:
            type: string
            minLength: 1
            default: youtube
            title: Platform
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompetitorSocialOverview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    CompetitorSocialOverview:
      properties:
        brand_id:
          type: string
          format: uuid
          title: Brand Id
        competitors:
          items:
            $ref: '#/components/schemas/CompetitorSocialMetricRow'
          type: array
          title: Competitors
        platform:
          type: string
          title: Platform
          default: youtube
        estimate_notice:
          type: string
          title: Estimate Notice
          default: >-
            Public YouTube channel data from the YouTube Data API/RSS feed.
            Coverage is best-effort and may omit private or unavailable metrics.
      type: object
      required:
        - brand_id
        - competitors
      title: CompetitorSocialOverview
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CompetitorSocialMetricRow:
      properties:
        competitor_domain:
          type: string
          title: Competitor Domain
        platform:
          type: string
          title: Platform
          default: youtube
        channel_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Channel Url
        post_count_30d:
          anyOf:
            - type: integer
            - type: 'null'
          title: Post Count 30D
        avg_views:
          anyOf:
            - type: number
            - type: 'null'
          title: Avg Views
        avg_engagement:
          anyOf:
            - type: number
            - type: 'null'
          title: Avg Engagement
        follower_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Follower Count
        latest_posts:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Latest Posts
        captured_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Captured At
      type: object
      required:
        - competitor_domain
      title: CompetitorSocialMetricRow
    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

````