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

> Get Property History



## OpenAPI

````yaml api-reference/realtor/openapi.json get /api/v1/property/history
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/history:
    get:
      tags:
        - Property
      summary: Get Property History
      description: Get Property History
      operationId: getApiV1PropertyHistory
      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: object
                    properties:
                      current_values:
                        type: 'null'
                        description: ''
                        example: null
                      historical_values:
                        type: array
                        items:
                          type: object
                          properties:
                            source:
                              type: object
                              properties:
                                name:
                                  type: string
                                  description: ''
                                  example: Quantarium
                                type:
                                  type: string
                                  description: ''
                                  example: quantarium
                              description: ''
                            estimates:
                              type: array
                              items:
                                type: object
                                properties:
                                  estimate:
                                    type: number
                                    description: ''
                                    example: 1309507
                                  date:
                                    type: string
                                    description: ''
                                    example: '2026-02-11'
                              description: ''
                        description: ''
                      forecast_values:
                        type: array
                        items:
                          type: object
                          properties:
                            source:
                              type: object
                              properties:
                                name:
                                  type: string
                                  description: ''
                                  example: Quantarium
                                type:
                                  type: string
                                  description: ''
                                  example: quantarium
                              description: ''
                            estimates:
                              type: array
                              items:
                                type: object
                                properties:
                                  estimate:
                                    type: number
                                    description: ''
                                    example: 1309997
                                  date:
                                    type: string
                                    description: ''
                                    example: '2026-03-01'
                              description: ''
                        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

````