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

# ProvenExpert Reviews

> This endpoint fetches reviews, ratings, and replies from a ProvenExpert profile identified by its public URL or profile slug.



## OpenAPI

````yaml POST /provenexpert/reviews
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:
  /provenexpert/reviews:
    post:
      description: >-
        This endpoint fetches reviews, ratings, and replies from a ProvenExpert
        profile identified by its public URL or profile slug.
      requestBody:
        description: ProvenExpert review scraping parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProvenexpertReviewsRequest'
        required: true
      responses:
        '200':
          description: Reviews fetched successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProvenexpertReviewsResponse'
              examples:
                validationError:
                  value:
                    all_reviews: []
                    extra_information: {}
                    message: <string>
        '400':
          description: Validation error or unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                validationError:
                  value:
                    error: <string>
      servers:
        - url: https://py-api.hobbo.ai
components:
  schemas:
    ProvenexpertReviewsRequest:
      type: object
      required:
        - query
      properties:
        query:
          type: string
          description: Provide a valid ProvenExpert profile URL or profile identifier.
        sort_type:
          type:
            - string
            - 'null'
          enum:
            - feedback
            - new
            - old
            - best
            - worse
          default: feedback
          description: Order in which reviews should be sorted.
        filter_by:
          type:
            - integer
            - 'null'
          enum:
            - 0
            - 5
            - 4
            - 3
            - 2
            - 1
          default: 0
          description: Rating filter applied to the reviews (0 keeps all ratings).
        reviews_to_fetch:
          type:
            - number
            - 'null'
          description: >-
            Number of reviews to fetch (default: all reviews, or within
            30-second timeout).
        sync_date:
          type:
            - string
            - 'null'
          description: 'Fetches reviews posted on a specific date using format: YYYY-MM-DD.'
        is_text_formatted:
          type: boolean
          description: Returns the review text with visual formatting preserved.
          default: true
    ProvenexpertReviewsResponse:
      type: object
      properties:
        all_reviews:
          type: array
          description: Array of fetched reviews
          items:
            type: object
            properties:
              query:
                type:
                  - string
                  - 'null'
                description: Original query URL
              review_id:
                type:
                  - string
                  - number
                  - 'null'
                description: Identifier of the review
              author_name:
                type:
                  - string
                  - 'null'
                description: Name of the review author
              review_text:
                type:
                  - string
                  - 'null'
                description: Content of the review
              review_rating:
                type:
                  - number
                  - 'null'
                description: Star rating provided in the review
              rating_text:
                type:
                  - string
                  - 'null'
                description: Label associated with the rating (e.g., "Very good")
              rating_category:
                type:
                  - object
                  - 'null'
                description: Category-wise rating breakdown
                additionalProperties:
                  type:
                    - number
                    - string
                    - 'null'
              is_recommended:
                type:
                  - boolean
                  - 'null'
                description: Whether the reviewer recommends the business
              review_date:
                type:
                  - string
                  - 'null'
                description: Date when the review was posted
              review_stats:
                type:
                  - object
                  - 'null'
                description: Additional stats such as helpful counts or category totals
                additionalProperties:
                  type:
                    - string
                    - number
                    - boolean
                    - 'null'
              review_reply:
                type:
                  - object
                  - 'null'
                properties:
                  replier_name:
                    type:
                      - string
                      - 'null'
                    description: Name of the responder
                  replier_profile_image_url:
                    type:
                      - string
                      - 'null'
                    description: Profile image URL of the responder
                  reply_text:
                    type:
                      - string
                      - 'null'
                    description: Reply text provided by the business
                description: Business response if available
        extra_information:
          type: object
          properties:
            extra_information:
              type: object
              properties:
                pagination_data:
                  type:
                    - object
                    - 'null'
                  description: Pagination state returned from ProvenExpert
              description: Additional metadata about the ProvenExpert profile
            total_review_count:
              type:
                - integer
                - 'null'
              description: Total number of reviews fetched
            total_review_count_list:
              type:
                - array
                - 'null'
              items:
                type: integer
              description: List of review counts per page
        message:
          type: string
          description: Status message about the review extraction
    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

````