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

# Get Builder Reviews

> Get Builder Reviews



## OpenAPI

````yaml api-reference/zillow/openapi.json get /api/v1/builder/reviews
openapi: 3.1.0
info:
  title: US Property Data
  description: US Property Data Documentation
  version: 1.0.0
servers:
  - url: https://us-property-data.p.rapidapi.com
    description: RapiAPI
security: []
paths:
  /api/v1/builder/reviews:
    get:
      tags:
        - Builder
      summary: Get Builder Reviews
      description: Get Builder Reviews
      operationId: getApiV1BuilderReviews
      parameters:
        - in: query
          name: feed_id
          schema:
            type: string
            description: Unique identifier of the builder
            example: '7796'
          required: true
        - in: query
          name: page
          schema:
            type: integer
            exclusiveMinimum: 0
            description: Page number for pagination
            default: 1
            example: 1
          required: false
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  cost:
                    type: number
                    description: Cost of the request
                    example: 1
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        reviewId:
                          type: number
                          description: Unique identifier of the builder review
                          example: 2326089
                        reviewerName:
                          type: string
                          description: Display name of the reviewer
                          example: JOSE LUIS C.
                        overallRating:
                          type: number
                          description: >-
                            Overall rating score given to the builder or
                            community
                          example: 5
                        reviewText:
                          type: string
                          description: Full text content of the review
                          example: >-
                            Excelente atencion y hasta la fecha una buena
                            atencion. Por la señora nelda
                        reviewDate:
                          type: string
                          description: Date and time when the review was created
                          example: '2026-01-16T22:35:00+00:00'
                        communityName:
                          type: string
                          description: Name of the community associated with this review
                          example: Twin Lakes 50s LN
                        builderResponse:
                          type:
                            - object
                            - 'null'
                          description: >-
                            Response from the builder to this review, if
                            available
                          example: null
                        builderResponseDate:
                          type:
                            - string
                            - 'null'
                          description: >-
                            Date and time when the builder responded to the
                            review, if available
                          example: null
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Bad request
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: >-
                      Invalid API key. Go to https://docs.rapidapi.com/docs/keys
                      for more info.
        '403':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: You are not subscribed to this API.
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: 'Request failed with status 500: Internal Server Error'
                  status_code:
                    type: number
                    example: 500
                  cost:
                    type: number
                    example: 0
                  explain:
                    type: string
                    example: >-
                      Oops, it looks like there was an issue processing your
                      request. Don't worry, you won't be charged for this
                      request
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-rapidapi-key
      description: Rapid API Key

````