https://github.com/mithereal/ex_zillow
a zillow elixir module
https://github.com/mithereal/ex_zillow
elixir zillow zillow-elixir
Last synced: 17 days ago
JSON representation
a zillow elixir module
- Host: GitHub
- URL: https://github.com/mithereal/ex_zillow
- Owner: mithereal
- License: mit
- Created: 2017-09-06T23:16:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-09-14T00:24:06.000Z (almost 5 years ago)
- Last Synced: 2026-02-15T17:33:46.747Z (4 months ago)
- Topics: elixir, zillow, zillow-elixir
- Language: Elixir
- Size: 28.3 KB
- Stars: 1
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Zillow
[](https://hexdocs.pm/zillow/)
[](https://hex.pm/packages/zillow)
[](https://github.com/mithereal/ex_zillow/blob/master/LICENSE)
[](https://github.com/mithereal/ex_zillow/commits/master)
** This will fetch Information From Zillow about a given address **
## Installation
[available in Hex](https://hex.pm/packages/zillow), the package can be installed by adding `zillow` to your list of
dependencies in `mix.exs`:
```elixir
def deps do
[{:zillow, "~> 2.1.0"}]
end
```
## Config
```elixir
config :zillow, api_key: "zillow-key"
```
## Usage
```elixir
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"}
```