Zillow
This will fetch Information From Zillow about a given address
Installation
available in Hex, the package can be installed by adding zillow
to your list of
dependencies in mix.exs
:
def deps do
[{:zillow, "~> 2.1.0"}]
end
Config
config :zillow, api_key: "zillow-key"
Usage
iex > address = "4406 N 48th st"
iex > area = "Phoenix, AZ 85008"
iex > address_record = %{address: address, area: area}
iex > Zillow.fetch(address_record)
%{error: 2, message: "invalid zillow api key"}