Zillow Api v2.1.0 Zillow View Source

This module is responsible for retrieving data from zillow.

Link to this section Summary

Functions

fetch the response from zillow return a json string

Link to this section Functions

fetch the response from zillow return a json string.

## Examples

   iex> address = "4406 N 48th st"

   iex> area = "Phoenix, AZ 85008"

   iex> address_record = %{address: address, area: area}

   iex> Zillow.fetch(address_record)
    %{bathrooms: 5, total_rooms: 5, sq_ft: 1200 }