Project

rubillow

0.06
No release in over 3 years
Low commit activity in last 3 years
There's a lot of open issues
Ruby library to access the Zillow API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.2
~> 0.6
~> 10.0
~> 2.12
~> 0.7
~> 0.8

Runtime

~> 1.5.0
 Project Readme

Rubillow

Rubillow is a ruby library to access the Zillow API.

Supports all of the API methods, with real ruby classes returned for each call.

Installing

gem install rubillow

or add the following to your Gemfile:

gem "rubillow"

Examples

Adding setup into an initializer:

Rubillow.configure do |configuration|
  configuration.zwsid = "abcd1234"
end

Getting property Zestimate:

property = Rubillow::HomeValuation.zestimate({ :zpid => '48749425' })
if property.success?
  puts property.price
end

Documentation

You should find the documentation for your version of Rubillow on Rubygems.

More Information

Build & Dependency Status

Gem Version Build Status Dependency Status Code Climate Coverage Status

License

Rubillow uses the MIT license. See LICENSE for more details.