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

# List workspace recommendations



## OpenAPI

````yaml /openapi.json get /api/v1/workspaces/{workspace}/recs
openapi: 3.0.3
info:
  title: ai-cmo.dev Services API
  version: 1.0.0
servers: []
security: []
paths:
  /api/v1/workspaces/{workspace}/recs:
    get:
      summary: List workspace recommendations
      operationId: listRecommendations
      parameters:
        - name: workspace
          in: path
          required: true
          schema:
            type: string
            pattern: ^[a-z0-9-]+$
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecommendationBoard'
      security:
        - cookieAuth: []
        - bearerAuth:
            - recs:read
components:
  schemas:
    RecommendationBoard:
      type: object
      properties:
        proposed:
          type: array
          items:
            type: object
            properties:
              rec_id:
                type: string
              brand:
                type: string
              created_at:
                type: string
                nullable: true
              type:
                type: string
                enum:
                  - new_blog_post
                  - new_comparison_page
                  - content_refresh
                  - technical
                  - earned_media
                  - fact_correction
                  - reddit_thread
                  - landing_page
                nullable: true
              topic:
                type: string
                nullable: true
              title:
                type: string
                nullable: true
              rationale:
                type: string
                nullable: true
              brief:
                anyOf:
                  - enum:
                      - 'null'
                    nullable: true
                  - type: boolean
                  - type: number
                  - type: string
                  - type: array
                    items: a044c97e-9e24-4541-9981-354e50821e13
                  - type: object
                    additionalProperties: c2fb68e4-f304-4088-b237-e0885e365d7e
              evidence: 35b72a82-9a0a-4bfe-a32c-8c47f1112cc5
              scores: e548e004-9300-4a9d-96de-1e7b698abeb8
              evidence_weeks:
                type: integer
                minimum: 0
              status:
                type: string
                enum:
                  - proposed
                  - todo
                  - in_review
                  - done
                  - archived
              state_version:
                type: integer
                exclusiveMinimum: true
                minimum: 0
              compliance_flag:
                type: string
                nullable: true
              current_draft_id:
                type: string
                nullable: true
              restore_target:
                type: string
                enum:
                  - proposed
                  - todo
                nullable: true
              visibility_snapshot:
                allOf:
                  - 0ff96447-0a7d-4c66-9de6-a90de59309f6
                nullable: true
            required:
              - rec_id
              - brand
              - created_at
              - type
              - topic
              - title
              - rationale
              - brief
              - evidence
              - scores
              - evidence_weeks
              - status
              - state_version
              - compliance_flag
              - current_draft_id
              - restore_target
              - visibility_snapshot
            additionalProperties: false
        todo:
          type: array
          items: a4104e2c-bf79-4708-9861-a95e0bb110e8
        in_review:
          type: array
          items: a4104e2c-bf79-4708-9861-a95e0bb110e8
        done:
          type: array
          items: a4104e2c-bf79-4708-9861-a95e0bb110e8
        archived:
          type: array
          items: a4104e2c-bf79-4708-9861-a95e0bb110e8
      required:
        - proposed
        - todo
        - in_review
        - done
        - archived
      additionalProperties: false
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: cookie
      name: geo.session
      description: Signed HttpOnly browser session cookie
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: gp_live_<43 base64url characters>
      description: Workspace-bound machine API key

````