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

# /pagesjaunes/businesses/reviews

> Get reviews of a PagesJaunes business by its numeric id

**Price:** 10 credits per 10 results

**💡 AI Hint:** Get reviews for a PagesJaunes business by numeric id. Each review has the author, rating (0-5), text, publication date, experience date, the reviewed rubric, the owner reply when present, and a helpful-vote count. Order by publication date, rating, or experience date.

**⚠️ Common errors:** 412: Business not found for the given id



## OpenAPI

````yaml /openapi-filtered.json post /api/pagesjaunes/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/pagesjaunes/businesses/reviews:
    post:
      tags:
        - /pagesjaunes
      summary: /pagesjaunes/businesses/reviews
      description: >-
        Get reviews of a PagesJaunes business by its numeric id


        **Price:** 10 credits per 10 results


        **💡 AI Hint:** Get reviews for a PagesJaunes business by numeric id.
        Each review has the author, rating (0-5), text, publication date,
        experience date, the reviewed rubric, the owner reply when present, and
        a helpful-vote count. Order by publication date, rating, or experience
        date.


        **⚠️ Common errors:** 412: Business not found for the given id
      operationId: __api_pagesjaunes_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/PagesJaunesReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PagesJaunesReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PagesJaunesReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        business:
          type: string
          minLength: 1
          description: PagesJaunes business id, or the full /pros/{id} URL
          examples:
            - '51672428'
        count:
          type: integer
          minimum: 1
          description: Max number of reviews
        sort:
          $ref: '#/components/schemas/PagesJaunesReviewSort'
          description: Review ordering
          default: date_published
      type: object
      required:
        - business
        - count
    PagesJaunesReview:
      properties:
        '@type':
          type: string
          default: PagesJaunesReview
        id:
          anyOf:
            - type: string
            - type: 'null'
        author:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        published_date:
          anyOf:
            - type: string
            - type: 'null'
        experience_date:
          anyOf:
            - type: string
            - type: 'null'
        rubric:
          anyOf:
            - type: string
            - type: 'null'
        owner_reply:
          anyOf:
            - type: string
            - type: 'null'
        like_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PagesJaunesReviewSort:
      type: string
      enum:
        - date_published
        - rating
        - date_experience
    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

````