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

# Find Agent

> Find Agent



## OpenAPI

````yaml api-reference/realtor/openapi.json get /api/v1/agent/find
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/find:
    get:
      tags:
        - Agent
      summary: Find Agent
      description: Find Agent
      operationId: getApiV1AgentFind
      parameters:
        - in: query
          name: location
          schema:
            type: string
            minLength: 1
            description: Location to find agents
            example: '20002'
          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
                  total:
                    type: number
                    description: Total number of properties matching the search criteria
                    example: 792
                  has_more:
                    type: boolean
                    description: Whether there are more data to fetch
                    example: true
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: ''
                          example: 56cb393789a68901006f185f
                        is_paid:
                          type: boolean
                          description: ''
                          example: true
                        is_realtor:
                          type: boolean
                          description: ''
                          example: true
                        fulfillment_id:
                          type: string
                          description: ''
                          example: '1062618'
                        display_ratings:
                          type: boolean
                          description: ''
                          example: true
                        avatar:
                          type: object
                          properties:
                            url:
                              type: string
                              description: ''
                              example: >-
                                https://ap.rdcpix.com/346029794/cd5b963073b94e559c920f5722ac8338a-e0rd-w144_h144.jpg
                            initials:
                              type: string
                              description: ''
                              example: GK
                          description: ''
                        broker:
                          type: object
                          properties:
                            name:
                              type: string
                              description: ''
                              example: JohnHart Real Estate
                            fulfillment_id:
                              type: string
                              description: ''
                              example: '1612284'
                          description: ''
                        fullname:
                          type: string
                          description: ''
                          example: Giovany Kirakossian
                        ratings_reviews:
                          type: object
                          properties:
                            average_rating:
                              type: number
                              description: ''
                              example: 5
                            recommendations_count:
                              type: number
                              description: ''
                              example: 2
                            reviews_count:
                              type: number
                              description: ''
                              example: 24
                          description: ''
                        listing_stats:
                          type: object
                          properties:
                            combined_annual:
                              type: object
                              properties:
                                min:
                                  type: number
                                  description: ''
                                  example: 110000
                                max:
                                  type: number
                                  description: ''
                                  example: 2595995
                              description: ''
                            for_sale:
                              type: object
                              properties:
                                count:
                                  type: number
                                  description: ''
                                  example: 5
                                last_listing_date:
                                  type: string
                                  description: ''
                                  example: '2026-01-31T00:27:33Z'
                                max:
                                  type: number
                                  description: ''
                                  example: 1600000
                                min:
                                  type: number
                                  description: ''
                                  example: 389999
                              description: ''
                            recently_sold_annual:
                              type: object
                              properties:
                                count:
                                  type: number
                                  description: ''
                                  example: 9
                              description: ''
                            recently_sold_listing_details:
                              type: object
                              properties:
                                listings:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      baths:
                                        type: number
                                        description: ''
                                        example: 5
                                      beds:
                                        type: number
                                        description: ''
                                        example: 4
                                      city:
                                        type: string
                                        description: ''
                                        example: Porter Ranch
                                      photo:
                                        type: string
                                        description: ''
                                        example: >-
                                          https://ap.rdcpix.com/f51e872cd9ee444b3a04dd9dc92ba277l-m49364866rd-w100_h67.jpg
                                      state_code:
                                        type: string
                                        description: ''
                                        example: CA
                                  description: ''
                                show_additional:
                                  type: boolean
                                  description: ''
                                  example: true
                              description: ''
                          description: ''
                        services:
                          type: 'null'
                          description: ''
                          example: null
                        sorting_weight:
                          type: number
                          description: ''
                          example: 65
        '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

````