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

# List Content Agent slots

> Lists scheduled content pieces (the Content Agent schedule). Supports pagination with status filters, or a date window via fromDate/toDate (calendar mode, max 500 rows).



## OpenAPI

````yaml /v2/openapi.json get /content-agent/slots
openapi: 3.0.0
info:
  title: Promptwatch API v2
  description: >-
    API v2 for customer integrations with Promptwatch monitoring platform. This
    version provides improved structure, additional endpoints, and enhanced
    functionality.
  version: 2.0.0
  contact:
    name: Promptwatch Support
    email: team@promptwatch.com
    url: https://promptwatch.com
  license:
    name: Commercial
    url: https://promptwatch.com/terms-and-conditions
servers:
  - url: https://server.promptwatch.com/api/v2
    description: Promptwatch API v2
security: []
tags:
  - name: Authentication
    description: API key validation and authentication
  - name: Content
    description: >-
      AI content generation and optimization. Create content asynchronously and
      poll for results.
  - name: Content Agent
    description: >-
      Content Agent (automated content) lifecycle: project settings, scheduled
      slots, review (accept/decline), and publish.
  - name: Content Gap
    description: Content gap analysis and recommendations
  - name: Publishing
    description: >-
      Publish content to a connected CMS, or record a live URL, and track the
      published page
  - name: Models
    description: Available LLM models
  - name: Monitors
    description: Monitor management and CRUD operations
  - name: Page Tracker
    description: Track URLs and inspect citation stats, responses, and prompts
  - name: Prompts
    description: Prompt management and operations
  - name: Query Fanouts
    description: ChatGPT query fanout keywords
  - name: Responses
    description: LLM response data and analytics
  - name: Tags
    description: Tag management for prompts
  - name: Topics
    description: Topic management for prompts
  - name: Actions
    description: Action items (GEO suggestions and tasks)
  - name: Personas
    description: Persona configuration for monitors
  - name: Brands
    description: Brand management for competitive analysis
  - name: Visibility
    description: Brand visibility time series and competitor heatmaps
  - name: Citations
    description: Citation analytics from AI responses
  - name: Analytics
    description: Visitor analytics, AI crawler logs, sentiment, and brand visibility trends
  - name: Projects
    description: Project management (organization-level keys only)
  - name: Sitemap
    description: Sitemap crawl progress and discovered URLs
  - name: Site Health
    description: >-
      Crawled pages with SEO issues (titles, meta descriptions, H1, thin
      content)
  - name: Socials
    description: >-
      Social media citations (Reddit posts and YouTube videos) found in LLM
      responses
  - name: Ads Radar
    description: Sponsored ads captured in AI answers
  - name: Shopping
    description: Product appearances in AI shopping answers and tracked products
paths:
  /content-agent/slots:
    get:
      tags:
        - Content Agent
      summary: List Content Agent slots
      description: >-
        Lists scheduled content pieces (the Content Agent schedule). Supports
        pagination with status filters, or a date window via fromDate/toDate
        (calendar mode, max 500 rows).
      operationId: listContentAgentSlots
      parameters:
        - schema:
            type: integer
            default: 1
            minimum: 1
          in: query
          name: page
          required: false
          description: Page number (1-based). Ignored when fromDate/toDate are set.
        - schema:
            type: integer
            default: 25
            minimum: 1
            maximum: 100
          in: query
          name: size
          required: false
          description: Page size (max 100). Ignored when fromDate/toDate are set.
        - schema:
            type: string
            enum:
              - publishAt
              - publishedAt
              - generateBy
              - priorityScore
              - createdAt
            default: publishAt
          in: query
          name: orderBy
          required: false
          description: Sort field for paginated list.
        - schema:
            type: string
            enum:
              - asc
              - desc
            default: asc
          in: query
          name: sortOrder
          required: false
        - schema:
            type: array
            items:
              type: string
              enum:
                - PLANNED
                - GENERATING
                - REVIEW
                - APPROVED
                - SCHEDULED
                - PUBLISHED
                - DEFERRED
                - SUPPRESSED
                - FAILED
          in: query
          name: statuses
          required: false
          description: Filter by slot status. SUPPRESSED is excluded by default.
        - schema:
            type: string
            format: date-time
          in: query
          name: fromDate
          required: false
          description: >-
            Inclusive lower bound on publishAt. When set with toDate, returns an
            unpaginated calendar window (max 500).
        - schema:
            type: string
            format: date-time
          in: query
          name: toDate
          required: false
          description: >-
            Inclusive upper bound on publishAt. Use with fromDate for a calendar
            window.
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  slots:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: Resource identifier
                        status:
                          type: string
                          enum:
                            - PLANNED
                            - GENERATING
                            - REVIEW
                            - APPROVED
                            - SCHEDULED
                            - PUBLISHED
                            - DEFERRED
                            - SUPPRESSED
                            - FAILED
                          description: Slot lifecycle status.
                        generateBy:
                          type: string
                          format: date-time
                          description: When generation is due.
                        publishAt:
                          type: string
                          format: date-time
                          description: Scheduled publish time.
                        priorityScore:
                          type: number
                          nullable: true
                        prioritizationReason:
                          type: string
                          nullable: true
                        scheduledAtReason:
                          type: string
                          nullable: true
                        documentConfiguration:
                          type: object
                          description: >-
                            Per-slot content options applied when the piece is
                            generated.
                          properties:
                            personaId:
                              type: string
                              format: uuid
                              description: Persona for voice and audience.
                            contentType:
                              type: string
                              enum:
                                - ARTICLE
                                - BLOG_POST
                                - OPINION
                                - LISTICLE
                                - HOW_TO
                                - REVIEW
                                - COMPARISON
                                - CASE_STUDY
                                - INTERVIEW
                                - DOCUMENTATION
                                - WIKI
                                - PRODUCT_PAGE
                                - LANDING_PAGE
                                - PRESS_RELEASE
                                - GENERIC_CONTENT
                                - PRODUCT_COMPARISON
                              description: Output content format.
                            contentLength:
                              type: string
                              enum:
                                - SHORT
                                - MEDIUM
                                - LONG
                              description: Target length.
                            toneOfVoice:
                              type: string
                              enum:
                                - PROFESSIONAL
                                - CASUAL
                                - TECHNICAL
                                - CONVERSATIONAL
                                - NEUTRAL
                                - AUTHORITATIVE
                                - FRIENDLY
                                - PERSUASIVE
                              description: Tone preset (CUSTOM not supported on slots).
                            enabledTools:
                              type: array
                              items:
                                type: string
                                enum:
                                  - GOOGLE_SEARCH
                                  - GOOGLE_NEWS_SEARCH
                                  - CRAWL_WEBSITE
                                  - ANALYZE_COMPETITOR_PAGE
                                  - GENERATE_ARTICLE_IMAGE
                                  - FIND_INTERNAL_LINKS
                                  - TAKE_SCREENSHOT
                                  - SEARCH_KNOWLEDGE_BASE
                              description: Writer tools enabled for this piece.
                            contentLanguageCode:
                              type: string
                              description: BCP-47 language code (e.g. en-US).
                          additionalProperties: false
                        documentId:
                          type: string
                          format: uuid
                          nullable: true
                        documentTitle:
                          type: string
                          nullable: true
                        contentType:
                          type: string
                          enum:
                            - ARTICLE
                            - BLOG_POST
                            - OPINION
                            - LISTICLE
                            - HOW_TO
                            - REVIEW
                            - COMPARISON
                            - CASE_STUDY
                            - INTERVIEW
                            - DOCUMENTATION
                            - WIKI
                            - PRODUCT_PAGE
                            - LANDING_PAGE
                            - PRESS_RELEASE
                            - GENERIC_CONTENT
                            - PRODUCT_COMPARISON
                          nullable: true
                        contentLength:
                          type: string
                          enum:
                            - SHORT
                            - MEDIUM
                            - LONG
                          nullable: true
                        toneOfVoice:
                          type: string
                          enum:
                            - PROFESSIONAL
                            - CASUAL
                            - TECHNICAL
                            - CONVERSATIONAL
                            - NEUTRAL
                            - AUTHORITATIVE
                            - FRIENDLY
                            - PERSUASIVE
                          nullable: true
                        personaId:
                          type: string
                          format: uuid
                          nullable: true
                        personaName:
                          type: string
                          nullable: true
                        title:
                          type: string
                          description: Display title for the scheduled piece.
                        publishAttempts:
                          type: integer
                        failureReason:
                          type: string
                          nullable: true
                        autoApproved:
                          type: boolean
                        publishSource:
                          type: string
                          enum:
                            - AUTOMATIC
                            - MANUAL
                          nullable: true
                        publishedAt:
                          type: string
                          format: date-time
                          description: Timestamp (ISO 8601)
                          nullable: true
                        publishedByName:
                          type: string
                          nullable: true
                        source:
                          type: string
                          description: Backlog source label (content gap, prompt, etc.).
                        recommendationTitle:
                          type: string
                          nullable: true
                        contentGapId:
                          type: string
                          format: uuid
                          nullable: true
                        promptId:
                          type: string
                          format: uuid
                          nullable: true
                        publishState:
                          type: string
                          enum:
                            - LIVE
                            - DRAFT
                          nullable: true
                        cmsProvider:
                          type: string
                          nullable: true
                        liveUrl:
                          type: string
                          nullable: true
                        viewUrl:
                          type: string
                          nullable: true
                          description: Best available link (live, draft, or CMS editor).
                        viewUrlKind:
                          type: string
                          enum:
                            - live
                            - draft
                            - cmsEditor
                          nullable: true
                      required:
                        - id
                        - status
                        - generateBy
                        - publishAt
                        - priorityScore
                        - prioritizationReason
                        - scheduledAtReason
                        - documentConfiguration
                        - documentId
                        - documentTitle
                        - contentType
                        - contentLength
                        - toneOfVoice
                        - personaId
                        - personaName
                        - title
                        - publishAttempts
                        - failureReason
                        - autoApproved
                        - publishSource
                        - publishedAt
                        - publishedByName
                        - source
                        - recommendationTitle
                        - contentGapId
                        - promptId
                        - publishState
                        - cmsProvider
                        - liveUrl
                        - viewUrl
                        - viewUrlKind
                      additionalProperties: false
                    description: >-
                      Scheduled content pieces for the current page or date
                      window.
                  page:
                    type: integer
                    description: Page number (1-based)
                  size:
                    type: integer
                    description: Page size
                  total:
                    type: integer
                    description: Total items matching the request
                  totalPages:
                    type: integer
                    description: Total pages for this page size
                required:
                  - slots
                  - total
                  - page
                  - size
                  - totalPages
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                example:
                  error: Unauthorized
                  message: Missing or invalid X-API-Key header.
                properties:
                  error:
                    type: string
                    description: Error category (often aligned with HTTP semantics)
                  code:
                    type: string
                    description: Optional machine-readable code
                  message:
                    type: string
                    description: Human-readable explanation
                  details:
                    type: object
                    description: Optional structured detail (e.g. validation)
                    additionalProperties: true
                required:
                  - error
                  - message
                additionalProperties: false
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                example:
                  code: CONTENT_AUTOMATION_SLOT_NOT_FOUND
                  message: Content piece not found
                properties:
                  code:
                    type: string
                    description: Machine-readable error code
                    enum:
                      - CONTENT_AUTOMATION_DISABLED
                      - CONTENT_AUTOMATION_FEATURE_DISABLED
                      - CONTENT_AUTOMATION_PROJECT_NOT_FOUND
                      - CONTENT_AUTOMATION_SETUP_INCOMPLETE
                      - CONTENT_AUTOMATION_SHARE_BELOW_COMMITTED
                      - CONTENT_AUTOMATION_SLOT_NOT_FOUND
                      - CONTENT_AUTOMATION_SLOT_INVALID_STATE
                      - CONTENT_AUTOMATION_SLOT_NOT_EDITABLE
                      - CONTENT_AUTOMATION_SLOT_NO_DOCUMENT
                      - CONTENT_AUTOMATION_BUDGET_EXCEEDED
                      - CONTENT_AUTOMATION_PUBLISH_FAILED
                      - CONTENT_INVALID_PERSONA
                      - API_KEY_READ_ONLY
                      - INTERNAL_ERROR
                    example: CONTENT_AUTOMATION_DISABLED
                  message:
                    type: string
                    description: Human-readable error message
                    example: Content piece not found
                required:
                  - code
                  - message
                additionalProperties: false
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        API key for authentication. Get yours from the Promptwatch dashboard
        under Settings > API Keys.

````