Find Agent
curl --request GET \
--url https://us-red-property-data.p.rapidapi.com/api/v1/agent/find \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-red-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-red-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-red-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-red-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-red-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-red-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": 792,
"has_more": true,
"data": [
{
"id": "56cb393789a68901006f185f",
"is_paid": true,
"is_realtor": true,
"fulfillment_id": "1062618",
"display_ratings": true,
"avatar": {
"url": "https://ap.rdcpix.com/346029794/cd5b963073b94e559c920f5722ac8338a-e0rd-w144_h144.jpg",
"initials": "GK"
},
"broker": {
"name": "JohnHart Real Estate",
"fulfillment_id": "1612284"
},
"fullname": "Giovany Kirakossian",
"ratings_reviews": {
"average_rating": 5,
"recommendations_count": 2,
"reviews_count": 24
},
"listing_stats": {
"combined_annual": {
"min": 110000,
"max": 2595995
},
"for_sale": {
"count": 5,
"last_listing_date": "2026-01-31T00:27:33Z",
"max": 1600000,
"min": 389999
},
"recently_sold_annual": {
"count": 9
},
"recently_sold_listing_details": {
"listings": [
{
"baths": 5,
"beds": 4,
"city": "Porter Ranch",
"photo": "https://ap.rdcpix.com/f51e872cd9ee444b3a04dd9dc92ba277l-m49364866rd-w100_h67.jpg",
"state_code": "CA"
}
],
"show_additional": true
}
},
"services": null,
"sorting_weight": 65
}
]
}{
"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-red-property-data.p.rapidapi.com/api/v1/agent/find \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-red-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-red-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-red-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-red-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-red-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-red-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": 792,
"has_more": true,
"data": [
{
"id": "56cb393789a68901006f185f",
"is_paid": true,
"is_realtor": true,
"fulfillment_id": "1062618",
"display_ratings": true,
"avatar": {
"url": "https://ap.rdcpix.com/346029794/cd5b963073b94e559c920f5722ac8338a-e0rd-w144_h144.jpg",
"initials": "GK"
},
"broker": {
"name": "JohnHart Real Estate",
"fulfillment_id": "1612284"
},
"fullname": "Giovany Kirakossian",
"ratings_reviews": {
"average_rating": 5,
"recommendations_count": 2,
"reviews_count": 24
},
"listing_stats": {
"combined_annual": {
"min": 110000,
"max": 2595995
},
"for_sale": {
"count": 5,
"last_listing_date": "2026-01-31T00:27:33Z",
"max": 1600000,
"min": 389999
},
"recently_sold_annual": {
"count": 9
},
"recently_sold_listing_details": {
"listings": [
{
"baths": 5,
"beds": 4,
"city": "Porter Ranch",
"photo": "https://ap.rdcpix.com/f51e872cd9ee444b3a04dd9dc92ba277l-m49364866rd-w100_h67.jpg",
"state_code": "CA"
}
],
"show_additional": true
}
},
"services": null,
"sorting_weight": 65
}
]
}{
"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
Location to find agents
Minimum string length:
1Example:
"20002"
⌘I