GetUpdatedPropertyDetails {ZillowR} | R Documentation |
Make request to Zillow API GetUpdatedPropertyDetails Web Service
Description
For a specified property, the GetUpdatedPropertyDetails API returns all of the home facts that have been edited by the home's owner or agent. The result set contains the following attributes:
Usage
GetUpdatedPropertyDetails(
zpid = NULL,
zws_id = getOption("ZillowR-zws_id"),
url = "http://www.zillow.com/webservice/GetUpdatedPropertyDetails.htm"
)
Arguments
zpid |
The Zillow Property ID for the property for which to obtain information. Required. |
zws_id |
The Zillow Web Service Identifier. Required. |
url |
URL for the GetUpdatedPropertyDetails Web Service. Required. |
Details
Property address
Zillow property identifier
Posting details such as the agent name, MLS number, price, and posting type (For Sale or Make Me Move(tm))
Up to five photos of the property
Updated home facts such as beds, baths, square footage, home description, and neighborhood and school names
Value
A named list with the following elements:
- request
a list with the request parameters
- message
a list of status code(s) and message(s) returned by the API
- response
an XMLNode with the API-specific response values. At this time, no further coercion is performed, so you may have to use functions from the
XML
package to extract the desired output.
Examples
## Not run:
GetUpdatedPropertyDetails(zpid = 48749425)
## End(Not run)