xml - Zillow API General Search -


i have few issues using zillow api:

  • querying api
  • fetching specific data

querying issues

the issue can't seem find way use zillow api general searches such searching only zip code. here sample query deep search:

<searchresults:searchresults xsi:schemalocation="http://www.zillow.com/static/xsd/searchresults.xsd http://www.zillowstatic.com/vstatic/419b583f682a74b83f007039dd9c49f8/static/xsd/searchresults.xsd" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:searchresults="http://www.zillow.com/static/xsd/searchresults.xsd">     <request>         <address>15096 oak creek rd</address>         <citystatezip>el cajon, ca</citystatezip>     </request>     <message>         <text>request processed</text>         <code>0</code>     </message>     <response>         <results>             <result>                 <zpid>16893601</zpid>                 <links>                     <homedetails>http://www.zillow.com/homedetails/15096-oak-creek-rd-el-cajon-ca-92021/16893601_zpid/</homedetails>                     <graphsanddata>http://www.zillow.com/homedetails/15096-oak-creek-rd-el-cajon-ca-92021/16893601_zpid/#charts-and-data</graphsanddata>                     <mapthishome>http://www.zillow.com/homes/16893601_zpid/</mapthishome>                     <comparables>http://www.zillow.com/homes/comps/16893601_zpid/</comparables>                 </links>                 <address>                     <street>15096 oak creek rd</street>                     <zipcode>92021</zipcode>                     <city>el cajon</city>                     <state>ca</state>                     <latitude>32.86576</latitude>                     <longitude>-116.847964</longitude>                 </address>                 <fipscounty>6073</fipscounty>                 <usecode>singlefamily</usecode>                 <taxassessmentyear>2012</taxassessmentyear>                 <taxassessment>496002.0</taxassessment>                 <yearbuilt>2006</yearbuilt>                 <lotsizesqft>108900</lotsizesqft>                 <finishedsqft>2700</finishedsqft>                 <bathrooms>3.0</bathrooms>                 <bedrooms>3</bedrooms>                 <totalrooms>7</totalrooms>                 <lastsolddate>03/22/1999</lastsolddate>                 <lastsoldprice currency="usd">268000</lastsoldprice>                 <zestimate>                     <amount currency="usd">581783</amount>                     <last-updated>05/12/2013</last-updated>                     <oneweekchange deprecated="true"/>                     <valuechange duration="30" currency="usd">12050</valuechange>                     <valuationrange>                         <low currency="usd">523605</low>                         <high currency="usd">692322</high>                     </valuationrange>                     <percentile>0</percentile>                 </zestimate>                 <localrealestate>                     <region id="38333" type="city" name="el cajon">                         <links>                             <overview>http://www.zillow.com/local-info/ca-el-cajon/r_38333/</overview>                             <forsalebyowner>http://www.zillow.com/el-cajon-ca/fsbo/</forsalebyowner>                             <forsale>http://www.zillow.com/el-cajon-ca/</forsale>                         </links>                     </region>                 </localrealestate>             </result>         </results>     </response> </searchresults:searchresults> 

that gives fair amount of data it's specific. have tried omit address portion of search , returns error. there way more general search using zillow or other real estate api?

data issue

the above response query of house sale. no state list price house. there missing in request or api not offer that?

what i've tried

  • looking @ other zillow apis
  • manipulating query string

any appreciated! also, if there api can use has functionality needed, let me know!

ok reason because first don't offer general search data, specific , bits of data. when comes specific searches address based, offer api this, not general search.

however, if asking how use there api please reply , provide example.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -