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

> Get Sitejabber (smartcustomer.com) business reputation profile by website domain or review page URL

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/reviews-consumer-business.json post /api/sitejabber/businesses
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:
    post:
      tags:
        - /sitejabber
      summary: /sitejabber/businesses
      description: >-
        Get Sitejabber (smartcustomer.com) business reputation profile by
        website domain or review page URL


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Business not found
      operationId: __api_sitejabber_businesses_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SitejabberBusinessesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SitejabberBusiness'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SitejabberBusinessesPayload:
      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,}(?:[/?#].*)?$
      type: object
      required:
        - business
    SitejabberBusiness:
      properties:
        '@type':
          type: string
          default: SitejabberBusiness
        id:
          type: integer
        domain:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        ai_summary:
          anyOf:
            - type: string
            - type: 'null'
        subindustry:
          anyOf:
            - type: string
            - type: 'null'
        founded:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        positive_review_count:
          anyOf:
            - type: integer
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        question_count:
          anyOf:
            - type: integer
            - type: 'null'
        sj_score:
          anyOf:
            - type: number
            - type: 'null'
        confidence_score:
          anyOf:
            - type: number
            - type: 'null'
        warning_type:
          anyOf:
            - type: string
            - type: 'null'
        warning_date:
          anyOf:
            - type: string
            - type: 'null'
        is_closed:
          type: boolean
          default: false
        is_claimable:
          anyOf:
            - type: boolean
            - type: 'null'
        is_prohibited:
          type: boolean
          default: false
        is_review_solicitor:
          type: boolean
          default: false
        latest_review_text:
          anyOf:
            - type: string
            - type: 'null'
        popular_review_terms:
          items:
            type: string
          type: array
          default: []
        platform_ranks:
          anyOf:
            - $ref: '#/components/schemas/SitejabberPlatformRanks'
            - type: 'null'
        top_category:
          anyOf:
            - $ref: '#/components/schemas/SitejabberTopCategory'
            - type: 'null'
        fashion_attributes:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
        brand_images:
          items:
            type: string
          type: array
          default: []
        category_ratings:
          anyOf:
            - $ref: '#/components/schemas/SitejabberCategoryRatings'
            - type: 'null'
        rating_methods:
          items:
            $ref: '#/components/schemas/SitejabberRatingMethod'
          type: array
          default: []
        rating_distribution:
          anyOf:
            - $ref: '#/components/schemas/SitejabberRatingDistribution'
            - type: 'null'
        socials:
          anyOf:
            - $ref: '#/components/schemas/SitejabberSocials'
            - type: 'null'
        locations:
          items:
            $ref: '#/components/schemas/SitejabberLocation'
          type: array
          default: []
        contacts:
          items:
            $ref: '#/components/schemas/SitejabberContact'
          type: array
          default: []
        categories:
          items:
            $ref: '#/components/schemas/SitejabberCategory'
          type: array
          default: []
        breadcrumbs:
          items:
            $ref: '#/components/schemas/SitejabberCategory'
          type: array
          default: []
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - domain
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SitejabberPlatformRanks:
      properties:
        '@type':
          type: string
          default: SitejabberPlatformRanks
        alexa_global_rank:
          anyOf:
            - type: integer
            - type: 'null'
        alexa_us_rank:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    SitejabberTopCategory:
      properties:
        '@type':
          type: string
          default: SitejabberTopCategory
        name:
          type: string
        display_name:
          anyOf:
            - type: string
            - type: 'null'
        position:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    SitejabberCategoryRatings:
      properties:
        '@type':
          type: string
          default: SitejabberCategoryRatings
        service:
          anyOf:
            - $ref: '#/components/schemas/SitejabberDimensionRating'
            - type: 'null'
        value:
          anyOf:
            - $ref: '#/components/schemas/SitejabberDimensionRating'
            - type: 'null'
        shipping:
          anyOf:
            - $ref: '#/components/schemas/SitejabberDimensionRating'
            - type: 'null'
        returns:
          anyOf:
            - $ref: '#/components/schemas/SitejabberDimensionRating'
            - type: 'null'
        quality:
          anyOf:
            - $ref: '#/components/schemas/SitejabberDimensionRating'
            - type: 'null'
      type: object
    SitejabberRatingMethod:
      properties:
        '@type':
          type: string
          default: SitejabberRatingMethod
        method:
          type: string
        vote_count:
          anyOf:
            - type: integer
            - type: 'null'
        average:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - method
    SitejabberRatingDistribution:
      properties:
        '@type':
          type: string
          default: SitejabberRatingDistribution
        positive:
          anyOf:
            - type: integer
            - type: 'null'
        neutral:
          anyOf:
            - type: integer
            - type: 'null'
        negative:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    SitejabberSocials:
      properties:
        '@type':
          type: string
          default: SitejabberSocials
        facebook:
          anyOf:
            - type: string
            - type: 'null'
        twitter:
          anyOf:
            - type: string
            - type: 'null'
        linkedin:
          anyOf:
            - type: string
            - type: 'null'
        youtube:
          anyOf:
            - type: string
            - type: 'null'
        instagram:
          anyOf:
            - type: string
            - type: 'null'
        tiktok:
          anyOf:
            - type: string
            - type: 'null'
        pinterest:
          anyOf:
            - type: string
            - type: 'null'
        crunchbase:
          anyOf:
            - type: string
            - type: 'null'
        wikipedia:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SitejabberLocation:
      properties:
        '@type':
          type: string
          default: SitejabberLocation
        email:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        phone_country:
          anyOf:
            - type: string
            - type: 'null'
        street_address:
          anyOf:
            - type: string
            - type: 'null'
        street_address_2:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        is_primary:
          type: boolean
          default: false
      type: object
    SitejabberContact:
      properties:
        '@type':
          type: string
          default: SitejabberContact
        type:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        contact:
          type: string
      type: object
      required:
        - type
        - contact
    SitejabberCategory:
      properties:
        '@type':
          type: string
          default: SitejabberCategory
        id:
          type: integer
        name:
          type: string
        display_name:
          anyOf:
            - type: string
            - type: 'null'
        icon:
          anyOf:
            - type: string
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        business_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - name
    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
    SitejabberDimensionRating:
      properties:
        '@type':
          type: string
          default: SitejabberDimensionRating
        average:
          anyOf:
            - type: number
            - type: 'null'
        vote_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````