Packages

This will fetch Information From Zillow about a given address.

Retired package: Deprecated - api no longer exists

Current section

Files

Jump to
zillow lib http.ex
Raw

lib/http.ex

defmodule Zillow.Http do
@moduledoc false
use Tesla
plug(Tesla.Middleware.BaseUrl, "https://www.zillow.com/webservice/GetDeepSearchResults.htm")
def search(key, address, area) do
get("?zws-id=#{key}&address=#{address}&citystatezip=#{area}}")
end
end