You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*ZillowApi* | [**zillowGetMultifamilyBuilding**](docs/ZillowApi.md#zillowGetMultifamilyBuilding) | **GET** /v1/zillow/building | Get multifamily building
649
650
*ZillowApi* | [**zillowGetPropertyDetail**](docs/ZillowApi.md#zillowGetPropertyDetail) | **GET** /v1/zillow/property/{zpid} | Get property detail
650
651
*ZillowApi* | [**zillowGetPropertyDetailByUrl**](docs/ZillowApi.md#zillowGetPropertyDetailByUrl) | **GET** /v1/zillow/property | Get property detail by URL
651
652
*ZillowApi* | [**zillowListCoverageMarkets**](docs/ZillowApi.md#zillowListCoverageMarkets) | **GET** /v1/zillow/markets | List coverage markets
Copy file name to clipboardExpand all lines: docs/ZillowApi.md
+71Lines changed: 71 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ All URIs are relative to *https://scrapebadger.com*
5
5
| Method | HTTP request | Description |
6
6
|------------- | ------------- | -------------|
7
7
|[**zillowGetAgentProfileListings**](ZillowApi.md#zillowGetAgentProfileListings)|**GET** /v1/zillow/agent | Get agent profile + listings |
8
+
|[**zillowGetMultifamilyBuilding**](ZillowApi.md#zillowGetMultifamilyBuilding)|**GET** /v1/zillow/building | Get multifamily building |
8
9
|[**zillowGetPropertyDetail**](ZillowApi.md#zillowGetPropertyDetail)|**GET** /v1/zillow/property/{zpid} | Get property detail |
9
10
|[**zillowGetPropertyDetailByUrl**](ZillowApi.md#zillowGetPropertyDetailByUrl)|**GET** /v1/zillow/property | Get property detail by URL |
10
11
|[**zillowListCoverageMarkets**](ZillowApi.md#zillowListCoverageMarkets)|**GET** /v1/zillow/markets | List coverage markets |
@@ -86,6 +87,76 @@ public class Example {
86
87
|**200**| Successful Response | - |
87
88
|**422**| Validation Error | - |
88
89
90
+
<aid="zillowGetMultifamilyBuilding"></a>
91
+
# **zillowGetMultifamilyBuilding**
92
+
> Object zillowGetMultifamilyBuilding(url)
93
+
94
+
Get multifamily building
95
+
96
+
Get a Zillow apartment community with per-unit pricing and availability. Multi-unit rentals are served on `/apartments/...` and `/b/...` pages, which `/property` cannot read — pass a `home_type=BUILDING` search result's `detail_url` here instead.
* Get a Zillow apartment community with per-unit pricing and availability. Multi-unit rentals are served on `/apartments/...` and `/b/...` pages, which `/property` cannot read — pass a `home_type=BUILDING` search result's `detail_url` here instead.
289
+
* @param url Full Zillow building URL, e.g. https://www.zillow.com/apartments/kansas-city-mo/brookside-51/CkBJqt/ (required)
290
+
* @return Object
291
+
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
292
+
* @http.response.details
293
+
<table border="1">
294
+
<caption>Response Details</caption>
295
+
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* Get a Zillow apartment community with per-unit pricing and availability. Multi-unit rentals are served on `/apartments/...` and `/b/...` pages, which `/property` cannot read — pass a `home_type=BUILDING` search result's `detail_url` here instead.
308
+
* @param url Full Zillow building URL, e.g. https://www.zillow.com/apartments/kansas-city-mo/brookside-51/CkBJqt/ (required)
309
+
* @return ApiResponse<Object>
310
+
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
311
+
* @http.response.details
312
+
<table border="1">
313
+
<caption>Response Details</caption>
314
+
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* Get a Zillow apartment community with per-unit pricing and availability. Multi-unit rentals are served on `/apartments/...` and `/b/...` pages, which `/property` cannot read — pass a `home_type=BUILDING` search result's `detail_url` here instead.
328
+
* @param url Full Zillow building URL, e.g. https://www.zillow.com/apartments/kansas-city-mo/brookside-51/CkBJqt/ (required)
329
+
* @param _callback The callback to be executed when the API call finishes
330
+
* @return The request call
331
+
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
332
+
* @http.response.details
333
+
<table border="1">
334
+
<caption>Response Details</caption>
335
+
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
Copy file name to clipboardExpand all lines: src/test/java/com/scrapebadger/client/api/ZillowApiTest.java
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,20 @@ public void zillowGetAgentProfileListingsTest() throws ApiException {
47
47
// TODO: test validations
48
48
}
49
49
50
+
/**
51
+
* Get multifamily building
52
+
*
53
+
* Get a Zillow apartment community with per-unit pricing and availability. Multi-unit rentals are served on `/apartments/...` and `/b/...` pages, which `/property` cannot read — pass a `home_type=BUILDING` search result's `detail_url` here instead.
0 commit comments