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

# List Brand Intelligence Content Analyses Route

> Return the brand-owned Analyzed Content feed.



## OpenAPI

````yaml /openapi.json get /api/v1/brands/{brand_id}/brand-intelligence/content-analyses
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brands/{brand_id}/brand-intelligence/content-analyses:
    get:
      tags:
        - Brand Intelligence
        - Brand Intelligence
      summary: List Brand Intelligence Content Analyses Route
      description: Return the brand-owned Analyzed Content feed.
      operationId: >-
        list_brand_intelligence_content_analyses_route_api_v1_brands__brand_id__brand_intelligence_content_analyses_get
      parameters:
        - name: brand_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Brand Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 24
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            title: Offset
            default: 0
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/BrandIntelligenceContentAnalysisListResponse
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    BrandIntelligenceContentAnalysisListResponse:
      properties:
        brand_id:
          type: string
          format: uuid
          title: Brand Id
        generated_at:
          type: string
          format: date-time
          title: Generated At
        total:
          type: integer
          title: Total
          default: 0
        limit:
          type: integer
          title: Limit
        offset:
          type: integer
          title: Offset
        has_more:
          type: boolean
          title: Has More
          default: false
        brand_domain:
          anyOf:
            - type: string
            - type: 'null'
          title: Brand Domain
        items:
          items:
            $ref: '#/components/schemas/BrandIntelligenceContentAnalysisSummary'
          type: array
          title: Items
      type: object
      required:
        - brand_id
        - generated_at
        - limit
        - offset
      title: BrandIntelligenceContentAnalysisListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    BrandIntelligenceContentAnalysisSummary:
      properties:
        brand_id:
          type: string
          format: uuid
          title: Brand Id
        item_id:
          type: string
          format: uuid
          title: Item Id
        analysis_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Analysis Id
        status:
          type: string
          enum:
            - not_analyzed
            - queued
            - running
            - completed
            - failed
          title: Status
        analysis_kind:
          type: string
          title: Analysis Kind
          default: content_teardown
        subject:
          type: string
          enum:
            - own_brand
            - competitor
            - unknown
          title: Subject
          default: unknown
        is_own_brand:
          type: boolean
          title: Is Own Brand
          default: false
        brand_domain:
          anyOf:
            - type: string
            - type: 'null'
          title: Brand Domain
        publisher_domain:
          anyOf:
            - type: string
            - type: 'null'
          title: Publisher Domain
        summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Summary
        overall_score:
          anyOf:
            - type: integer
              maximum: 100
              minimum: 0
            - type: 'null'
          title: Overall Score
        detected_format:
          anyOf:
            - type: string
            - type: 'null'
          title: Detected Format
        is_stale:
          type: boolean
          title: Is Stale
          default: false
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
        requested_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Requested At
        analyzed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Analyzed At
        job_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Job Id
        item:
          anyOf:
            - $ref: '#/components/schemas/ContentLibraryItemSummary'
            - type: 'null'
      type: object
      required:
        - brand_id
        - item_id
        - status
      title: BrandIntelligenceContentAnalysisSummary
    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
    ContentLibraryItemSummary:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        kind:
          type: string
          enum:
            - social_post
            - content
          title: Kind
        platform:
          anyOf:
            - type: string
            - type: 'null'
          title: Platform
        external_id:
          anyOf:
            - type: string
            - type: 'null'
          title: External Id
        url:
          anyOf:
            - type: string
            - type: 'null'
          title: Url
        title:
          type: string
          title: Title
        excerpt:
          anyOf:
            - type: string
            - type: 'null'
          title: Excerpt
        media_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Media Type
        is_video:
          type: boolean
          title: Is Video
          default: false
        thumbnail_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Thumbnail Url
        media_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Media Url
        download_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Download Url
        media_mirrored:
          type: boolean
          title: Media Mirrored
          default: false
        media_width:
          anyOf:
            - type: integer
              exclusiveMinimum: 0
            - type: 'null'
          title: Media Width
        media_height:
          anyOf:
            - type: integer
              exclusiveMinimum: 0
            - type: 'null'
          title: Media Height
        media_items:
          items:
            $ref: '#/components/schemas/ContentLibraryPostMediaItemSummary'
          type: array
          title: Media Items
        event:
          anyOf:
            - $ref: '#/components/schemas/ContentLibraryEventSummary'
            - type: 'null'
        published_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Published At
        language:
          anyOf:
            - type: string
            - type: 'null'
          title: Language
        theme:
          anyOf:
            - type: string
            - type: 'null'
          title: Theme
        video_duration_seconds:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          title: Video Duration Seconds
        country:
          anyOf:
            - type: string
            - type: 'null'
          title: Country
        tags:
          items:
            type: string
          type: array
          title: Tags
        topics:
          items:
            type: string
          type: array
          title: Topics
        views:
          anyOf:
            - type: integer
            - type: 'null'
          title: Views
        likes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Likes
        comments:
          anyOf:
            - type: integer
            - type: 'null'
          title: Comments
        shares:
          anyOf:
            - type: integer
            - type: 'null'
          title: Shares
        engagements:
          anyOf:
            - type: integer
            - type: 'null'
          title: Engagements
        source_status:
          type: string
          enum:
            - available
            - unavailable
          title: Source Status
          default: available
        source_unavailable_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Unavailable Reason
        platforms:
          items:
            type: string
          type: array
          title: Platforms
        publisher:
          $ref: '#/components/schemas/ContentLibraryPublisherSummary'
        analysis:
          anyOf:
            - $ref: '#/components/schemas/ContentLibraryItemAnalysisSummary'
            - type: 'null'
      type: object
      required:
        - id
        - kind
        - title
        - publisher
      title: ContentLibraryItemSummary
    ContentLibraryPostMediaItemSummary:
      properties:
        media_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Media Type
        thumbnail_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Thumbnail Url
        media_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Media Url
      type: object
      title: ContentLibraryPostMediaItemSummary
      description: One safe, ordered asset from a multi-media social post.
    ContentLibraryEventSummary:
      properties:
        event_id:
          type: string
          title: Event Id
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        starts_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Starts At
        ends_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Ends At
        timezone:
          anyOf:
            - type: string
            - type: 'null'
          title: Timezone
        venue_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Venue Name
        address:
          anyOf:
            - type: string
            - type: 'null'
          title: Address
        going_count:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          title: Going Count
        interested_count:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          title: Interested Count
      type: object
      required:
        - event_id
      title: ContentLibraryEventSummary
      description: Validated public metadata for a Facebook event story.
    ContentLibraryPublisherSummary:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        domain:
          anyOf:
            - type: string
            - type: 'null'
          title: Domain
        platform:
          anyOf:
            - type: string
            - type: 'null'
          title: Platform
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Profile Url
        handle:
          anyOf:
            - type: string
            - type: 'null'
          title: Handle
        avatar_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Avatar Url
        industries:
          items:
            type: string
          type: array
          title: Industries
        business_models:
          items:
            type: string
          type: array
          title: Business Models
      type: object
      required:
        - id
        - name
      title: ContentLibraryPublisherSummary
    ContentLibraryItemAnalysisSummary:
      properties:
        analysis_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Analysis Id
        status:
          type: string
          enum:
            - not_analyzed
            - queued
            - running
            - completed
            - failed
          title: Status
        summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Summary
        overall_score:
          anyOf:
            - type: integer
              maximum: 100
              minimum: 0
            - type: 'null'
          title: Overall Score
        performance_index:
          anyOf:
            - type: integer
              maximum: 100
              minimum: 0
            - type: 'null'
          title: Performance Index
        detected_format:
          anyOf:
            - type: string
            - type: 'null'
          title: Detected Format
        is_stale:
          type: boolean
          title: Is Stale
          default: false
        analyzed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Analyzed At
      type: object
      required:
        - status
      title: ContentLibraryItemAnalysisSummary
      description: >-
        The tile-sized slice of a post teardown.


        Enough for the score badge and the ``AnalysisActionButton`` state
        machine,

        without shipping a full report into a 24-card feed payload. Populated by

        ONE batched query per page in ``search_content_library`` — never per
        item.


        ``status`` carries the full response vocabulary (including the synthetic

        ``not_analyzed``) so the shape matches the analysis routes exactly;
        today

        the embed only ever emits ``completed`` because a partial run has
        nothing

        a tile can show.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````