> ## 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 Content Overview

> Latest content-marketing metrics per tracked competitor.



## OpenAPI

````yaml /openapi.json get /api/v1/brands/{brand_id}/dashboards/competitor-content
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brands/{brand_id}/dashboards/competitor-content:
    get:
      tags:
        - Dashboards
        - Dashboards
      summary: Get Competitor Content Overview
      description: Latest content-marketing metrics per tracked competitor.
      operationId: >-
        get_competitor_content_overview_api_v1_brands__brand_id__dashboards_competitor_content_get
      parameters:
        - name: brand_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Brand Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompetitorContentOverview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    CompetitorContentOverview:
      properties:
        brand_id:
          type: string
          format: uuid
          title: Brand Id
        competitors:
          items:
            $ref: '#/components/schemas/CompetitorContentMetricRow'
          type: array
          title: Competitors
      type: object
      required:
        - brand_id
        - competitors
      title: CompetitorContentOverview
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CompetitorContentMetricRow:
      properties:
        competitor_domain:
          type: string
          title: Competitor Domain
        content_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Content Url
        posts_last_30d:
          anyOf:
            - type: integer
            - type: 'null'
          title: Posts Last 30D
        avg_cadence_days:
          anyOf:
            - type: number
            - type: 'null'
          title: Avg Cadence Days
        content_types:
          additionalProperties: true
          type: object
          title: Content Types
        lead_magnet_types:
          additionalProperties: true
          type: object
          title: Lead Magnet Types
        has_ebooks:
          type: boolean
          title: Has Ebooks
          default: false
        has_webinars:
          type: boolean
          title: Has Webinars
          default: false
        has_whitepapers:
          type: boolean
          title: Has Whitepapers
          default: false
        latest_items:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Latest Items
        strategy_summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Strategy Summary
        captured_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Captured At
      type: object
      required:
        - competitor_domain
      title: CompetitorContentMetricRow
    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

````