> ## 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/realtor/openapi.json get /api/v1/agent/reviews
openapi: 3.1.0
info:
  title: US Red Property Data
  description: US Red Property Data Documentation
  version: 1.0.0
servers:
  - url: https://us-red-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: fulfillment_id
          schema:
            type: string
            minLength: 1
            description: fulfillment_id
            example: '208999'
          required: true
      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:
                        source_id:
                          type: string
                          description: ''
                          example: RDC
                        responsiveness:
                          type: number
                          description: ''
                          example: 5
                        market_expertise:
                          type: number
                          description: ''
                          example: 5
                        comment:
                          type: string
                          description: ''
                          example: >-
                            My agent was Brock Thompson who was incredibly
                            accomodating and communicative. He always made
                            himself available to see a listing even on short
                            notice. He was particularly effective during
                            negotiation and closing bringing in a number of
                            credits and offering solid advice on negotiation and
                            offer strategy.
                        display_name:
                          type: string
                          description: ''
                          example: Casey
                        location:
                          type: string
                          description: ''
                          example: Washington, DC
                        year:
                          type: string
                          description: ''
                          example: '2021'
                        negotiation_skills:
                          type: number
                          description: ''
                          example: 5
                        rating:
                          type: number
                          description: ''
                          example: 5
                        professionalism_communication:
                          type: number
                          description: ''
                          example: 5
                        describe_yourself:
                          type: string
                          description: ''
                          example: BUYER
                        started_timestamp:
                          type: string
                          description: ''
                          example: '2021-09-09T13:14:34'
                        review_date_display:
                          type: string
                          description: ''
                          example: September 9, 2021
                        reply:
                          type:
                            - string
                            - 'null'
                          description: ''
                          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

````