> ## 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 Property Nearby Home Values

> Get Property Nearby Home Values



## OpenAPI

````yaml api-reference/realtor/openapi.json get /api/v1/property/nearby-home-values
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/property/nearby-home-values:
    get:
      tags:
        - Property
      summary: Get Property Nearby Home Values
      description: Get Property Nearby Home Values
      operationId: getApiV1PropertyNearby-home-values
      parameters:
        - in: query
          name: property_id
          schema:
            type: string
            pattern: ^\d+$
            minLength: 1
            description: Property ID used to identify the property
            example: '2503567184'
          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:
                        property_id:
                          type: string
                          description: ''
                          example: '2503567184'
                        href:
                          type: string
                          description: ''
                          example: >-
                            https://www.realtor.com/realestateandhomes-detail/4465-Don-Miguel-Dr_Los-Angeles_CA_90008_M25035-67184
                        description:
                          type: object
                          properties:
                            beds:
                              type: number
                              description: ''
                              example: 3
                            baths_full:
                              type: number
                              description: ''
                              example: 2
                            baths_half:
                              type:
                                - number
                                - 'null'
                              description: ''
                              example: null
                            baths_consolidated:
                              type: string
                              description: ''
                              example: '2'
                            sqft:
                              type: number
                              description: ''
                              example: 1693
                            lot_sqft:
                              type: number
                              description: ''
                              example: 10224
                          description: ''
                        location:
                          type: object
                          properties:
                            address:
                              type: object
                              properties:
                                line:
                                  type: string
                                  description: ''
                                  example: 4465 Don Miguel Dr
                                city:
                                  type: string
                                  description: ''
                                  example: Los Angeles
                                state_code:
                                  type: string
                                  description: ''
                                  example: CA
                                postal_code:
                                  type: string
                                  description: ''
                                  example: '90008'
                          description: ''
                        current_estimates:
                          type: array
                          items:
                            type: object
                            properties:
                              estimate:
                                type: number
                                description: ''
                                example: 1309507
                              date:
                                type: string
                                description: ''
                                example: '2026-02-11'
                              isbest_homevalue:
                                type: boolean
                                description: ''
                                example: true
                          description: ''
                        list_price:
                          type: number
                          description: ''
                          example: 1299000
                        permalink:
                          type: string
                          description: ''
                          example: 4465-Don-Miguel-Dr_Los-Angeles_CA_90008_M25035-67184
                        status:
                          type: string
                          description: ''
                          example: for_sale
                        listing_id:
                          type: string
                          description: ''
                          example: '2991416295'
                    description: ''
        '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

````