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

# Reviews Selection

> Filter and select the most relevant reviews from your collection. Our AI analyzes content quality and sentiment to identify the most valuable feedback.



## OpenAPI

````yaml POST /public/v1/wol-review-selection
openapi: 3.1.0
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.hobbo.ai
    description: Main API server
  - url: https://py-api.hobbo.ai
    description: Python API server for scraper endpoints
security:
  - ApiKeyAuth: []
paths:
  /public/v1/wol-review-selection:
    post:
      description: >-
        Filter and select the most relevant reviews from your collection. Our AI
        analyzes content quality and sentiment to identify the most valuable
        feedback.
      requestBody:
        description: Review selection parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WolReviewSelectionRequest'
        required: true
      responses:
        '200':
          description: Reviews selected successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WolReviewSelectionResponse'
              examples:
                validationError:
                  value:
                    status: 200
                    data: {}
                    success: true
                    message: <string>
        '400':
          description: Validation error or unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                validationError:
                  value:
                    status: 400
                    data: {}
                    success: false
                    message: <string>
      servers:
        - url: https://api.hobbo.ai
components:
  schemas:
    WolReviewSelectionRequest:
      type: object
      required:
        - feeds
        - number_of_feeds_to_filter
      properties:
        feeds:
          type: array
          description: Array of feedback objects containing review data
          items:
            type: object
        number_of_feeds_to_filter:
          type: number
          description: Number of reviews to select from the provided feeds
    WolReviewSelectionResponse:
      type: object
      properties:
        status:
          type: integer
          description: HTTP status code
        data:
          type: object
          properties:
            selected_review_ids:
              type: array
              description: >-
                Array of selected review IDs based on content quality and
                sentiment analysis
              items:
                type: string
        success:
          type: boolean
          description: Indicates if the operation was successful
        message:
          type: string
          description: Response message
    Error:
      type: object
      properties:
        status:
          type: integer
          description: HTTP status code
        data:
          type: object
          description: Empty object or additional error data
        success:
          type: boolean
          description: Indicates operation failed
          example: false
        message:
          type: string
          description: Error message describing what went wrong

````