Find Builder
curl --request GET \
--url https://us-property-data.p.rapidapi.com/api/v1/builder/find \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-property-data.p.rapidapi.com/api/v1/builder/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/builder/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/builder/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/builder/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/builder/find")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us-property-data.p.rapidapi.com/api/v1/builder/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": 44,
"has_more": true,
"data": [
{
"feedId": 67130,
"logoUrl": "https://photos.zillowstatic.com/fp/fd62ecf9a4b6d09cf72d71f2ff84b26a-l_c.jpg",
"name": "Abele Homes, LLC",
"url": "/home-builder-profile/abele-homes/67130/",
"specCount": 4,
"communitiesCount": 1,
"specialties": [
"Build On Your Lot",
"Communities",
"Luxury Homes"
],
"locations": [
{
"regionId": 822230,
"urlFragment": "albany-schenectady-troy-ny/822230/",
"name": "Albany-Schenectady-Troy, NY",
"providerListingIds": [
31767574
]
}
],
"averageRatings": null,
"description": "Not only is Abele Builders family-owned and operated, we treat our customers like family. For more than 35 years, we’ve taken great pride in the houses we build. Our mission is to provide a wonderful, quality home for you and your family. We work to create communities that are visually pleasing, well-designed and well-maintained. Outstanding craftsmanship, quality materials and beautiful floorplans are all part of an Abele-built home",
"minPrice": 599995
}
]
}{
"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"
}Builder
Find Builder
Find Builder
GET
/
api
/
v1
/
builder
/
find
Find Builder
curl --request GET \
--url https://us-property-data.p.rapidapi.com/api/v1/builder/find \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-property-data.p.rapidapi.com/api/v1/builder/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/builder/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/builder/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/builder/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/builder/find")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us-property-data.p.rapidapi.com/api/v1/builder/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": 44,
"has_more": true,
"data": [
{
"feedId": 67130,
"logoUrl": "https://photos.zillowstatic.com/fp/fd62ecf9a4b6d09cf72d71f2ff84b26a-l_c.jpg",
"name": "Abele Homes, LLC",
"url": "/home-builder-profile/abele-homes/67130/",
"specCount": 4,
"communitiesCount": 1,
"specialties": [
"Build On Your Lot",
"Communities",
"Luxury Homes"
],
"locations": [
{
"regionId": 822230,
"urlFragment": "albany-schenectady-troy-ny/822230/",
"name": "Albany-Schenectady-Troy, NY",
"providerListingIds": [
31767574
]
}
],
"averageRatings": null,
"description": "Not only is Abele Builders family-owned and operated, we treat our customers like family. For more than 35 years, we’ve taken great pride in the houses we build. Our mission is to provide a wonderful, quality home for you and your family. We work to create communities that are visually pleasing, well-designed and well-maintained. Outstanding craftsmanship, quality materials and beautiful floorplans are all part of an Abele-built home",
"minPrice": 599995
}
]
}{
"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 builders by location, such as city, neighborhood, or ZIP code. Either location or name must be provided
Example:
"New York"
Find builders by name. Either location or name must be provided
Example:
"Toll"
Page number for pagination
Example:
1
⌘I