Zillow Advice: Zillow API and Data - Any API examples yet? http://www.zillow.com/advice-thread/Any-API-examples-yet/253442/ Zillow Advice | Zillow Real Estate Here's a code snippet in ... http://www.zillow.com/advice-thread/Any-API-examples-yet/253442/ Here's a code snippet in PHP.&nbsp; In my example I am just getting a few items but you can get the idea:<br/><br/>$xmlfile = "<a href="http://www.zillow.com/webservice/GetSearchResults.htm?zws-id=[YOURID]&amp;address=[ADDRESS]&amp;citystatezip=[CITY,STATE%20ZIP]P">http://www.zillow.com/webservice/GetSearchResults.htm?zws-id=[YOURID]&amp;address=[ADDRESS]&amp;citystatezip=[CITY,STATE ZIP]</a>";<br/>$s = simplexml_load_file($xmlfile);<br/>if ($s) {<br/>&nbsp;&nbsp;&nbsp; $returnCode = $s-&gt;message-&gt;code; <br/>&nbsp;&nbsp;&nbsp; $returnText = $s-&gt;message-&gt;text;<br/>&nbsp;&nbsp;&nbsp; if ($returnCode == 0) {<br/>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; $zpid = $s-&gt;response-&gt;results-&gt;result-&gt;zpid;<br/>&nbsp;&nbsp; $zestimate = $s-&gt;response-&gt;results-&gt;result-&gt;zestimate-&gt;amount;<br/>&nbsp;&nbsp; $x = 'last-updated';<br/>&nbsp;&nbsp; $last = $s-&gt;response-&gt;results-&gt;result-&gt;zestimate-&gt;$x;<br/>&nbsp;&nbsp; $high = $s-&gt;response-&gt;results-&gt;result-&gt;zestimate-&gt;valuationRange-&gt;high;<br/>&nbsp;&nbsp; $low = $s-&gt;response-&gt;results-&gt;result-&gt;zestimate-&gt;valuationRange-&gt;low;<br/>&nbsp;&nbsp; $change = $s-&gt;response-&gt;results-&gt;result-&gt;zestimate-&gt;valueChange;<br/>&nbsp;&nbsp; $estimatorLink = $s-&gt;response-&gt;results-&gt;result-&gt;links-&gt;myestimator;<br/>&nbsp;&nbsp;&nbsp; }<br/>}<br/><br/>Obviously you need to replace the information between "[ ]"<br/>Note that this is PHP 5.&nbsp; Previous versions do not support "simplexml_load_file". Tue, 07 Jul 2009 21:26:00 GMT http://www.zillow.com/advice-thread/Any-API-examples-yet/253442/ 2009-07-07T21:26:00Z Here's a code snippet in ... http://www.zillow.com/advice-thread/Any-API-examples-yet/253442/ Here's a code snippet in PHP.&nbsp; In my example I am just getting a few items but you can get the idea:<br/><br/>$xmlfile = "<a href="http://www.zillow.com/webservice/GetSearchResults.htm?zws-id=[YOURID]&amp;address=[ADDRESS]&amp;citystatezip=[CITY,STATE%20ZIP]P">http://www.zillow.com/webservice/GetSearchResults.htm?zws-id=[YOURID]&amp;address=[ADDRESS]&amp;citystatezip=[CITY,STATE ZIP]</a>";<br/>$s = simplexml_load_file($xmlfile);<br/>if ($s) {<br/>&nbsp;&nbsp;&nbsp; $returnCode = $s-&gt;message-&gt;code; <br/>&nbsp;&nbsp;&nbsp; $returnText = $s-&gt;message-&gt;text;<br/>&nbsp;&nbsp;&nbsp; if ($returnCode == 0) {<br/>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; $zpid = $s-&gt;response-&gt;results-&gt;result-&gt;zpid;<br/>&nbsp;&nbsp;&nbsp; $zestimate = $s-&gt;response-&gt;results-&gt;result-&gt;zestimate-&gt;amount;<br/>&nbsp;&nbsp;&nbsp; $x = 'last-updated';<br/>&nbsp;&nbsp;&nbsp; $last = $s-&gt;response-&gt;results-&gt;result-&gt;zestimate-&gt;$x;<br/>&nbsp;&nbsp;&nbsp; $high = $s-&gt;response-&gt;results-&gt;result-&gt;zestimate-&gt;valuationRange-&gt;high;<br/>&nbsp;&nbsp;&nbsp; $low = $s-&gt;response-&gt;results-&gt;result-&gt;zestimate-&gt;valuationRange-&gt;low;<br/>&nbsp;&nbsp;&nbsp; $change = $s-&gt;response-&gt;results-&gt;result-&gt;zestimate-&gt;valueChange;<br/>&nbsp;&nbsp;&nbsp; $estimatorLink = $s-&gt;response-&gt;results-&gt;result-&gt;links-&gt;myestimator;<br/>&nbsp;&nbsp;&nbsp; }<br/>}<br/><br/>Obviously you need to replace the information between "[ ]"<br/>Note that this is PHP 5.&nbsp; Previous versions do not support "simplexml_load_file". Tue, 07 Jul 2009 21:25:00 GMT http://www.zillow.com/advice-thread/Any-API-examples-yet/253442/ 2009-07-07T21:25:00Z That's something you'll have ... http://www.zillow.com/advice-thread/Any-API-examples-yet/253442/ That's something you'll have to ask a web developer about. Mike Rice at Eferi did that specific implementation. Tue, 07 Jul 2009 17:29:00 GMT http://www.zillow.com/advice-thread/Any-API-examples-yet/253442/ 2009-07-07T17:29:00Z Thanks yes that is a php ... http://www.zillow.com/advice-thread/Any-API-examples-yet/253442/ Thanks yes that is a php page, but I don't see how it works, there is a form in the code and it posts to itself, index.php, but where and how does it call the API? Tue, 07 Jul 2009 08:59:00 GMT http://www.zillow.com/advice-thread/Any-API-examples-yet/253442/ 2009-07-07T08:59:00Z Here is an example implementation ... http://www.zillow.com/advice-thread/Any-API-examples-yet/253442/ <a href="http://www.southernwinds.com/values/" rel="nofollow">Here is an example implementation for you to take a look at</a>. I'm pretty sure it's in PHP. Tue, 07 Jul 2009 05:49:00 GMT http://www.zillow.com/advice-thread/Any-API-examples-yet/253442/ 2009-07-07T05:49:00Z