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

> Get Agent Reviews



## OpenAPI

````yaml api-reference/zillow/openapi.json get /api/v1/agent/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/agent/reviews:
    get:
      tags:
        - Agent
      summary: Get Agent Reviews
      description: Get Agent Reviews
      operationId: getApiV1AgentReviews
      parameters:
        - in: query
          name: zuid
          schema:
            type: string
            description: >-
              Agent unique ID (ZUID). You can retrieve this ZUID by using the
              agent screen name from the Get Agent Detail endpoint
            example: X1-ZUyy58njdzkphl_aqadk
          required: true
        - in: query
          name: page
          schema:
            type: integer
            exclusiveMinimum: 0
            description: Page number for pagination
            default: 1
            example: 1
          required: false
        - in: query
          name: sort_by
          schema:
            type: string
            enum:
              - newst_first
              - rating_high_to_low
              - rating_low_to_high
            description: Sort by
            default: newst_first
            example: newst_first
          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
                  total:
                    type: number
                    description: Total number of reviews
                    example: 1913
                  has_more:
                    type: boolean
                    description: Whether there are more data to fetch
                    example: true
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        reviewComment:
                          type: string
                          description: Full text content of the review left by the client
                          example: >-
                            It was a pleasure working with Matt and his team.
                            The whole process was smooth, and he was very
                            responsive and helpful. Also, I have to mention he
                            was inventive to make the process adapt to my
                            situation which I am thankful for.
                        reviewId:
                          type: number
                          description: Unique identifier of the review
                          example: 9017136
                        subRatings:
                          type: array
                          items:
                            type: object
                            properties:
                              description:
                                type: string
                                description: >-
                                  Category of the sub-rating (e.g., Local
                                  knowledge, Responsiveness)
                                example: Local knowledge
                              score:
                                type: number
                                description: Score for this specific rating category
                                example: 5
                          description: Breakdown of ratings by specific criteria.
                        reviewee:
                          type: object
                          properties:
                            screenName:
                              type: string
                              description: Display name of the agent being reviewed
                              example: Matt Laricy
                            firstName:
                              type:
                                - string
                                - 'null'
                              description: First name of the agent
                              example: Matt
                            lastName:
                              type:
                                - string
                                - 'null'
                              description: Last name of the agent
                              example: Laricy
                            suffix:
                              type:
                                - string
                                - 'null'
                              description: Name suffix of the agent, if any
                              example: null
                            showName:
                              type: boolean
                              description: >-
                                Indicates whether the agent name is publicly
                                visible
                              example: true
                            encodedZuid:
                              type: string
                              description: Encoded unique identifier (ZUID) of the agent
                              example: X1-ZUyy58njdzkphl_aqadk
                          description: Information about the agent being reviewed.
                        reviewer:
                          type: object
                          properties:
                            screenName:
                              type: string
                              description: Display name of the reviewer
                              example: sina davani1
                            firstName:
                              type:
                                - string
                                - 'null'
                              description: First name of the reviewer, if available
                              example: null
                            lastName:
                              type:
                                - string
                                - 'null'
                              description: Last name of the reviewer, if available
                              example: null
                            suffix:
                              type:
                                - string
                                - 'null'
                              description: Name suffix of the reviewer, if any
                              example: null
                            showName:
                              type: boolean
                              description: >-
                                Indicates whether the reviewer name is publicly
                                visible
                              example: true
                            encodedZuid:
                              type: string
                              description: Encoded unique identifier (ZUID) of the reviewer
                              example: X1-ZU12hj7r82wvevd_5jgqr
                          description: Information about the person who left the review.
                        rating:
                          type: number
                          description: Overall rating score given to the agent
                          example: 5
                        createDate:
                          type: string
                          description: Date and time when the review was created
                          example: '2026-01-09T19:37:00'
                        rebuttal:
                          type:
                            - object
                            - 'null'
                          description: Response from the agent to the review, if any
                          example: null
                        workDescription:
                          type: string
                          description: >-
                            Summary of the transaction context related to this
                            review
                          example: >-
                            Bought a Condo home in 2026 in South loop, Chicago,
                            IL.
        '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

````