Search by URL
curl --request GET \
--url https://us-property-data.p.rapidapi.com/api/v1/search/by-url \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-property-data.p.rapidapi.com/api/v1/search/by-url"
headers = {"x-rapidapi-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-rapidapi-key': '<api-key>'}};
fetch('https://us-property-data.p.rapidapi.com/api/v1/search/by-url', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://us-property-data.p.rapidapi.com/api/v1/search/by-url",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://us-property-data.p.rapidapi.com/api/v1/search/by-url"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-rapidapi-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://us-property-data.p.rapidapi.com/api/v1/search/by-url")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us-property-data.p.rapidapi.com/api/v1/search/by-url")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-rapidapi-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"cost": 1,
"total": 792,
"has_more": true,
"data": [
{
"zpid": "456346178",
"palsId": "6955001_S1787431",
"id": "456346178",
"rawHomeStatusCd": "ForSale",
"marketingStatusSimplifiedCd": "For Sale by Agent",
"imgSrc": "https://photos.zillowstatic.com/fp/79ae0ba2dffd7afad218b1b9d1499a4a-p_e.jpg",
"hasImage": true,
"detailUrl": "https://www.zillow.com/homedetails/33-221st-Bch-UNIT-1-Breezy-Pt-NY-11697/456346178_zpid/",
"statusType": "FOR_SALE",
"statusText": "Condo for sale",
"countryCurrency": "$",
"price": "$1,200,000",
"unformattedPrice": 1200000,
"address": "33 221st Bch UNIT 1, Breezy Pt, NY 11697",
"addressStreet": "33 221st Bch UNIT 1",
"addressCity": "Breezy Pt",
"addressState": "NY",
"addressZipcode": "11697",
"isUndisclosedAddress": false,
"shouldShowRequestOnPrice": false,
"beds": 4,
"baths": 3,
"area": 2800,
"latLong": {
"latitude": 40.55535,
"longitude": -73.92914
},
"isZillowOwned": false,
"flexFieldText": "Private beach",
"contentType": "homeInsight",
"hdpData": {
"homeInfo": {
"zpid": 456346178,
"streetAddress": "33 221st Bch UNIT 1",
"zipcode": "11697",
"city": "Breezy Pt",
"state": "NY",
"latitude": 40.55535,
"longitude": -73.92914,
"price": 1200000,
"datePriceChanged": 1763539200000,
"bathrooms": 3,
"bedrooms": 4,
"livingArea": 2800,
"homeType": "CONDO",
"homeStatus": "FOR_SALE",
"daysOnZillow": 141,
"isFeatured": false,
"shouldHighlight": false,
"rentZestimate": 4572,
"listing_sub_type": {
"is_FSBA": true
},
"priceReduction": "$195,000 (Nov 19)",
"isUnmappable": false,
"isPreforeclosureAuction": false,
"homeStatusForHDP": "FOR_SALE",
"priceForHDP": 1200000,
"priceChange": -195000,
"timeOnZillow": 12192296000,
"isNonOwnerOccupied": true,
"isPremierBuilder": false,
"isZillowOwned": false,
"currency": "USD",
"country": "USA",
"unit": "Unit 1",
"isShowcaseListing": false
}
},
"pgapt": "ForSale",
"sgapt": "For Sale (Broker)",
"shouldShowZestimateAsPrice": false,
"has3DModel": false,
"hasVideo": false,
"isHomeRec": false,
"hasAdditionalAttributions": true,
"isFeaturedListing": false,
"isShowcaseListing": false,
"relaxed": true,
"brokerName": "Listing by: Douglas Elliman",
"carouselPhotosComposable": {
"baseUrl": "https://photos.zillowstatic.com/fp/{photoKey}-p_e.jpg",
"communityBaseUrl": null,
"photoData": [
{
"photoKey": "79ae0ba2dffd7afad218b1b9d1499a4a"
}
],
"communityPhotoData": null,
"isStaticUrls": false
},
"ma": false,
"isPaidBuilderNewConstruction": false
}
]
}{
"message": "Bad request"
}{
"message": "Invalid API key. Go to https://docs.rapidapi.com/docs/keys for more info."
}{
"message": "You are not subscribed to this API."
}{
"success": false,
"message": "Request failed with status 500: Internal Server Error",
"status_code": 500,
"cost": 0,
"explain": "Oops, it looks like there was an issue processing your request. Don't worry, you won't be charged for this request"
}Search
Search by URL
Search by URL
GET
/
api
/
v1
/
search
/
by-url
Search by URL
curl --request GET \
--url https://us-property-data.p.rapidapi.com/api/v1/search/by-url \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-property-data.p.rapidapi.com/api/v1/search/by-url"
headers = {"x-rapidapi-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-rapidapi-key': '<api-key>'}};
fetch('https://us-property-data.p.rapidapi.com/api/v1/search/by-url', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://us-property-data.p.rapidapi.com/api/v1/search/by-url",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://us-property-data.p.rapidapi.com/api/v1/search/by-url"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-rapidapi-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://us-property-data.p.rapidapi.com/api/v1/search/by-url")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us-property-data.p.rapidapi.com/api/v1/search/by-url")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-rapidapi-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"cost": 1,
"total": 792,
"has_more": true,
"data": [
{
"zpid": "456346178",
"palsId": "6955001_S1787431",
"id": "456346178",
"rawHomeStatusCd": "ForSale",
"marketingStatusSimplifiedCd": "For Sale by Agent",
"imgSrc": "https://photos.zillowstatic.com/fp/79ae0ba2dffd7afad218b1b9d1499a4a-p_e.jpg",
"hasImage": true,
"detailUrl": "https://www.zillow.com/homedetails/33-221st-Bch-UNIT-1-Breezy-Pt-NY-11697/456346178_zpid/",
"statusType": "FOR_SALE",
"statusText": "Condo for sale",
"countryCurrency": "$",
"price": "$1,200,000",
"unformattedPrice": 1200000,
"address": "33 221st Bch UNIT 1, Breezy Pt, NY 11697",
"addressStreet": "33 221st Bch UNIT 1",
"addressCity": "Breezy Pt",
"addressState": "NY",
"addressZipcode": "11697",
"isUndisclosedAddress": false,
"shouldShowRequestOnPrice": false,
"beds": 4,
"baths": 3,
"area": 2800,
"latLong": {
"latitude": 40.55535,
"longitude": -73.92914
},
"isZillowOwned": false,
"flexFieldText": "Private beach",
"contentType": "homeInsight",
"hdpData": {
"homeInfo": {
"zpid": 456346178,
"streetAddress": "33 221st Bch UNIT 1",
"zipcode": "11697",
"city": "Breezy Pt",
"state": "NY",
"latitude": 40.55535,
"longitude": -73.92914,
"price": 1200000,
"datePriceChanged": 1763539200000,
"bathrooms": 3,
"bedrooms": 4,
"livingArea": 2800,
"homeType": "CONDO",
"homeStatus": "FOR_SALE",
"daysOnZillow": 141,
"isFeatured": false,
"shouldHighlight": false,
"rentZestimate": 4572,
"listing_sub_type": {
"is_FSBA": true
},
"priceReduction": "$195,000 (Nov 19)",
"isUnmappable": false,
"isPreforeclosureAuction": false,
"homeStatusForHDP": "FOR_SALE",
"priceForHDP": 1200000,
"priceChange": -195000,
"timeOnZillow": 12192296000,
"isNonOwnerOccupied": true,
"isPremierBuilder": false,
"isZillowOwned": false,
"currency": "USD",
"country": "USA",
"unit": "Unit 1",
"isShowcaseListing": false
}
},
"pgapt": "ForSale",
"sgapt": "For Sale (Broker)",
"shouldShowZestimateAsPrice": false,
"has3DModel": false,
"hasVideo": false,
"isHomeRec": false,
"hasAdditionalAttributions": true,
"isFeaturedListing": false,
"isShowcaseListing": false,
"relaxed": true,
"brokerName": "Listing by: Douglas Elliman",
"carouselPhotosComposable": {
"baseUrl": "https://photos.zillowstatic.com/fp/{photoKey}-p_e.jpg",
"communityBaseUrl": null,
"photoData": [
{
"photoKey": "79ae0ba2dffd7afad218b1b9d1499a4a"
}
],
"communityPhotoData": null,
"isStaticUrls": false
},
"ma": false,
"isPaidBuilderNewConstruction": false
}
]
}{
"message": "Bad request"
}{
"message": "Invalid API key. Go to https://docs.rapidapi.com/docs/keys for more info."
}{
"message": "You are not subscribed to this API."
}{
"success": false,
"message": "Request failed with status 500: Internal Server Error",
"status_code": 500,
"cost": 0,
"explain": "Oops, it looks like there was an issue processing your request. Don't worry, you won't be charged for this request"
}Authorizations
Rapid API Key
Query Parameters
Zillow search or listing URL (must be from zillow.com domain)
Example:
"https://www.zillow.com/queens-new-york-ny/?searchQueryState=%7B%22pagination%22%3A%7B%7D%2C%22isMapVisible%22%3Atrue%2C%22mapBounds%22%3A%7B%22west%22%3A-73.8138451751709%2C%22east%22%3A-73.6629548248291%2C%22south%22%3A40.60563319578654%2C%22north%22%3A40.71410704445532%7D%2C%22regionSelection%22%3A%5B%7B%22regionId%22%3A270915%2C%22regionType%22%3A17%7D%5D%2C%22filterState%22%3A%7B%22sort%22%3A%7B%22value%22%3A%22globalrelevanceex%22%7D%7D%2C%22isListVisible%22%3Atrue%2C%22mapZoom%22%3A13%7D"
Page number for pagination
Example:
1
⌘I