Find Agent
curl --request GET \
--url https://us-property-data.p.rapidapi.com/api/v1/agent/find \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-property-data.p.rapidapi.com/api/v1/agent/find"
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/agent/find', 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/agent/find",
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/agent/find"
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/agent/find")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us-property-data.p.rapidapi.com/api/v1/agent/find")
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": 23314,
"has_more": true,
"data": [
{
"encoded_zuid": "X1-ZUyy58njdzkphl_aqadk",
"name": "Matt Laricy",
"url": "https://www.zillow.com/profile/Matt-Laricy",
"is_top_agent": true,
"image_url": "https://photos.zillowstatic.com/fp/02c54ad6d005384316302c03eb33d50d-h_l.jpg",
"logo_url": null,
"has_team": true,
"company": "Americorp Real Estate",
"review_information": {
"review_average": 5,
"review_count": 1913
},
"profile_data": [
{
"data": "$44K - $4.3M",
"label": "team price range"
},
{
"data": "557",
"label": "team sales last 12 months"
},
{
"data": "5445",
"label": "team sales in Chicago"
}
]
}
]
}{
"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"
}Agent
Find Agent
Find Agent
GET
/
api
/
v1
/
agent
/
find
Find Agent
curl --request GET \
--url https://us-property-data.p.rapidapi.com/api/v1/agent/find \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-property-data.p.rapidapi.com/api/v1/agent/find"
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/agent/find', 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/agent/find",
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/agent/find"
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/agent/find")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us-property-data.p.rapidapi.com/api/v1/agent/find")
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": 23314,
"has_more": true,
"data": [
{
"encoded_zuid": "X1-ZUyy58njdzkphl_aqadk",
"name": "Matt Laricy",
"url": "https://www.zillow.com/profile/Matt-Laricy",
"is_top_agent": true,
"image_url": "https://photos.zillowstatic.com/fp/02c54ad6d005384316302c03eb33d50d-h_l.jpg",
"logo_url": null,
"has_team": true,
"company": "Americorp Real Estate",
"review_information": {
"review_average": 5,
"review_count": 1913
},
"profile_data": [
{
"data": "$44K - $4.3M",
"label": "team price range"
},
{
"data": "557",
"label": "team sales last 12 months"
},
{
"data": "5445",
"label": "team sales in Chicago"
}
]
}
]
}{
"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
Find agents by location, such as city, neighborhood, or ZIP code. Either location or name must be provided
Example:
"New York"
Find agents by name. Either location or name must be provided
Example:
"Sam"
Page number for pagination
Example:
1
Filters agents who assist clients with buying properties
Example:
true
Filters agents who assist clients with selling properties
Example:
true
Filter for top-rated agents
Example:
true
price_range filter in format min,max
Example: 50000,1000000 means price from $50,000 to $1,000,000
Example:
"50000,1000000"
Filter by specialties
You can use one or multiple values separated by commas ,
first-time-home-buyers: First Time Homebuyersinvestment-properties: Investment Propertiesrentals: Rentalsmilitary-or-veterans: Military/Veteransluxury-homes: Luxury Homesnew-construction: New Constructionproperty-management: Property Managementsenior-communities: Senior Communitiesrelocation: Relocationforeclosure: Foreclosurelot-or-land: Lot/Landvacation-short-term-rentals: Vacation/Short-term Rentals
Example:
"first-time-home-buyers,luxury-homes"
Filter by languages
You can use one or multiple values separated by commas ,
arabic: Arabicbengali: Bengalicantonese: Cantonesefarsi: Farsifilipino: Filipinofrench: Frenchgerman: Germangreek: Greekhebrew: Hebrewhindarian: Hindarianitalii: Italianhungan: Hungarianjapanese: Japanesekorean: Koreanmandar: Mandarinportuguese: Portugueserussiain: Russiainpolishn: Polishspanish: Spanishthai: Thaiturkish: Turkishvietnamese: Vietnamese
Example:
"arabic,bengali"