Get Property Similar Homes
curl --request GET \
--url https://us-red-property-data.p.rapidapi.com/api/v1/property/similar-homes \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-red-property-data.p.rapidapi.com/api/v1/property/similar-homes"
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/property/similar-homes', 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/property/similar-homes",
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/property/similar-homes"
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/property/similar-homes")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us-red-property-data.p.rapidapi.com/api/v1/property/similar-homes")
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,
"data": [
{
"property_id": "2547988187",
"description": {
"baths_max": null,
"baths_min": null,
"beds_max": null,
"beds_min": null,
"beds": 3,
"baths_full": 2,
"baths_half": null,
"sqft": 2587,
"lot_sqft": 14270,
"name": null
},
"rentals_application_eligibility": {
"estimated_status": "BLOCKED"
},
"community": null,
"location": {
"address": {
"coordinate": {
"lat": 34.00503,
"lon": -118.351985
},
"line": "4400 Don Zarembo Dr",
"city": "Los Angeles",
"state_code": "CA",
"postal_code": "90008"
}
},
"estimate": {
"estimate": 1689700,
"date": "2026-01-05"
},
"list_price": 1499999,
"available_date_change_timestamp": null,
"list_price_max": null,
"list_price_min": null,
"permalink": "4400-Don-Zarembo-Dr_Los-Angeles_CA_90008_M25479-88187",
"status": "for_sale",
"listing_id": "2989312511",
"flags": {
"is_coming_soon": null,
"is_contingent": null,
"is_new_construction": null,
"is_pending": null,
"is_foreclosure": null,
"is_for_rent": null,
"is_plan": null,
"is_price_reduced": false,
"is_new_listing": null,
"is_sales_builder": null,
"has_new_availability": null
},
"primary_photo": {
"href": "https://ap.rdcpix.com/0aaf9c428f8cb21c63c5d67cb4cb2ffbl-m3836311545xd-w300_h300_q80.jpg"
},
"source": {
"type": "mls",
"id": "MRCA"
}
}
]
}{
"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"
}Property
Get Property Similar Homes
Get Property Similar Homes
GET
/
api
/
v1
/
property
/
similar-homes
Get Property Similar Homes
curl --request GET \
--url https://us-red-property-data.p.rapidapi.com/api/v1/property/similar-homes \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-red-property-data.p.rapidapi.com/api/v1/property/similar-homes"
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/property/similar-homes', 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/property/similar-homes",
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/property/similar-homes"
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/property/similar-homes")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us-red-property-data.p.rapidapi.com/api/v1/property/similar-homes")
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,
"data": [
{
"property_id": "2547988187",
"description": {
"baths_max": null,
"baths_min": null,
"beds_max": null,
"beds_min": null,
"beds": 3,
"baths_full": 2,
"baths_half": null,
"sqft": 2587,
"lot_sqft": 14270,
"name": null
},
"rentals_application_eligibility": {
"estimated_status": "BLOCKED"
},
"community": null,
"location": {
"address": {
"coordinate": {
"lat": 34.00503,
"lon": -118.351985
},
"line": "4400 Don Zarembo Dr",
"city": "Los Angeles",
"state_code": "CA",
"postal_code": "90008"
}
},
"estimate": {
"estimate": 1689700,
"date": "2026-01-05"
},
"list_price": 1499999,
"available_date_change_timestamp": null,
"list_price_max": null,
"list_price_min": null,
"permalink": "4400-Don-Zarembo-Dr_Los-Angeles_CA_90008_M25479-88187",
"status": "for_sale",
"listing_id": "2989312511",
"flags": {
"is_coming_soon": null,
"is_contingent": null,
"is_new_construction": null,
"is_pending": null,
"is_foreclosure": null,
"is_for_rent": null,
"is_plan": null,
"is_price_reduced": false,
"is_new_listing": null,
"is_sales_builder": null,
"has_new_availability": null
},
"primary_photo": {
"href": "https://ap.rdcpix.com/0aaf9c428f8cb21c63c5d67cb4cb2ffbl-m3836311545xd-w300_h300_q80.jpg"
},
"source": {
"type": "mls",
"id": "MRCA"
}
}
]
}{
"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
Property ID used to identify the property
Minimum string length:
1Pattern:
^\d+$Example:
"2503567184"
⌘I