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

# /sitejabber/businesses/reviews

> Get Sitejabber (smartcustomer.com) customer reviews for a business by website domain

**Price:** 5 credits per 20 results

**⚠️ Common errors:** 412: Business not found



## OpenAPI

````yaml /openapi/reviews-consumer-business.json post /api/sitejabber/businesses/reviews
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/sitejabber/businesses/reviews:
    post:
      tags:
        - /sitejabber
      summary: /sitejabber/businesses/reviews
      description: >-
        Get Sitejabber (smartcustomer.com) customer reviews for a business by
        website domain


        **Price:** 5 credits per 20 results


        **⚠️ Common errors:** 412: Business not found
      operationId: __api_sitejabber_businesses_reviews_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SitejabberBusinessesReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SitejabberReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SitejabberBusinessesReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        business:
          type: string
          minLength: 1
          pattern: ^(?:https?://)?(?:www\.)?[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}(?:[/?#].*)?$
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - business
        - count
    SitejabberReview:
      properties:
        '@type':
          type: string
          default: SitejabberReview
        id:
          type: integer
        review_no:
          anyOf:
            - type: integer
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        tip:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: integer
            - type: 'null'
        published_at:
          anyOf:
            - type: string
            - type: 'null'
        experience_date:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          type: boolean
          default: false
        source:
          anyOf:
            - type: string
            - type: 'null'
        positive_vote_count:
          anyOf:
            - type: integer
            - type: 'null'
        negative_vote_count:
          anyOf:
            - type: integer
            - type: 'null'
        comment_count:
          anyOf:
            - type: integer
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        author:
          anyOf:
            - $ref: '#/components/schemas/SitejabberReviewAuthor'
            - type: 'null'
        business_reply:
          anyOf:
            - $ref: '#/components/schemas/SitejabberBusinessReply'
            - type: 'null'
        dimension_ratings:
          items:
            $ref: '#/components/schemas/SitejabberReviewDimensionRating'
          type: array
          default: []
        attributes:
          items:
            $ref: '#/components/schemas/SitejabberReviewAttribute'
          type: array
          default: []
        location:
          anyOf:
            - $ref: '#/components/schemas/SitejabberReviewLocation'
            - type: 'null'
        products_used:
          items:
            type: string
          type: array
          default: []
        images:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SitejabberReviewAuthor:
      properties:
        '@type':
          type: string
          default: SitejabberReviewAuthor
        id:
          type: integer
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        last_name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        positive_vote_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        is_identity_verified:
          type: boolean
          default: false
      type: object
      required:
        - id
    SitejabberBusinessReply:
      properties:
        '@type':
          type: string
          default: SitejabberBusinessReply
        id:
          type: integer
        text:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: string
            - type: 'null'
        vote_count:
          anyOf:
            - type: integer
            - type: 'null'
        author:
          anyOf:
            - $ref: '#/components/schemas/SitejabberReviewAuthor'
            - type: 'null'
      type: object
      required:
        - id
    SitejabberReviewDimensionRating:
      properties:
        '@type':
          type: string
          default: SitejabberReviewDimensionRating
        name:
          type: string
        value:
          type: integer
        reason:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
        - value
    SitejabberReviewAttribute:
      properties:
        '@type':
          type: string
          default: SitejabberReviewAttribute
        id:
          type: string
        label:
          anyOf:
            - type: string
            - type: 'null'
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    SitejabberReviewLocation:
      properties:
        '@type':
          type: string
          default: SitejabberReviewLocation
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````