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

# Content Library Publisher Stats

> Bulk per-domain organic-post aggregates — the Social Explore columns.



## OpenAPI

````yaml /openapi.json get /api/v1/content-library/publisher-stats
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/content-library/publisher-stats:
    get:
      tags:
        - Content Library
      summary: Content Library Publisher Stats
      description: Bulk per-domain organic-post aggregates — the Social Explore columns.
      operationId: >-
        content_library_publisher_stats_api_v1_content_library_publisher_stats_get
      parameters:
        - name: domains
          in: query
          required: true
          schema:
            type: string
            minLength: 1
            description: Comma-separated brand domains (max 100).
            title: Domains
          description: Comma-separated brand domains (max 100).
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContentLibraryPublisherStatsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ContentLibraryPublisherStatsResponse:
      properties:
        generated_at:
          type: string
          format: date-time
          title: Generated At
        items:
          items:
            $ref: '#/components/schemas/ContentLibraryPublisherStats'
          type: array
          title: Items
      type: object
      required:
        - generated_at
      title: ContentLibraryPublisherStatsResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ContentLibraryPublisherStats:
      properties:
        domain:
          type: string
          title: Domain
        post_count:
          type: integer
          title: Post Count
          default: 0
        posts_30d:
          type: integer
          title: Posts 30D
          default: 0
        last_published_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Published At
        platforms:
          items:
            type: string
          type: array
          title: Platforms
      type: object
      required:
        - domain
      title: ContentLibraryPublisherStats
      description: Per-domain organic-post aggregate (the Social Explore columns).
    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

````