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

> Get Agent Recommendations (Testimonials)



## OpenAPI

````yaml api-reference/realtor/openapi.json get /api/v1/agent/recommendations
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/recommendations:
    get:
      tags:
        - Agent
      summary: Get Agent Recommendations
      description: Get Agent Recommendations (Testimonials)
      operationId: getApiV1AgentRecommendations
      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:
                        comment:
                          type: string
                          description: ''
                          example: >-
                            David and his Team were amazing to work with as they
                            just helped us sell another home quickly!  It was
                            our primary residence and he advised us how to make
                            it look beautiful for open houses and showings and
                            helped us navigate the entire process seemlessly. 
                            We were very pleased with the multiple offers we
                            received and the final selling price.  It’s rare
                            that I can say I would instantly recommmend someone
                            to family and friends without hesitation.  Thank you
                            and we look forward to working with you again in the
                            future!
                        display_name:
                          type: string
                          description: ''
                          example: Matthew Rice
                        last_updated:
                          type: string
                          description: ''
                          example: '2019-07-17T14:14:37.674Z'
                        started_timestamp:
                          type:
                            - string
                            - 'null'
                          description: ''
                          example: null
                        source_id:
                          type: string
                          description: ''
                          example: RDC
        '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

````