Get Builder Detail
curl --request GET \
--url https://us-property-data.p.rapidapi.com/api/v1/builder/detail \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-property-data.p.rapidapi.com/api/v1/builder/detail"
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/detail', 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/detail",
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/detail"
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/detail")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us-property-data.p.rapidapi.com/api/v1/builder/detail")
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": {
"url": "/home-builder-profile/beechwood-homes/14395/",
"location": [
{
"regionId": 822230,
"urlFragment": "albany-schenectady-troy-ny/822230/",
"providerListingIds": [
30256825
],
"name": "Albany-Schenectady-Troy, NY",
"boundBox": {
"north": 43.08049,
"south": 43.08049,
"east": -73.787071,
"west": -73.787071
},
"averageRatings": null,
"reviews": []
}
],
"allCommunities": [
31956486,
29721312,
34831
],
"description": "The Beechwood Organization, ranks at the forefront of privately-owned residential homebuilders nationwide, is one of the largest developers of single family and multifamily housing in New York State, and is Long Islandβs largest homebuilder and developer of sophisticated lifestyle communities.\n\nSince 1985, Beechwood has built more than 10,000 homes in 80 communities across the New York metro area with new ones on the map in New York City, Long Island, Saratoga and North Carolina.\n\nBeechwood holds dear its commitment to thoughtful land planning and design, repurposing underutilized land, building in harmony with nature and creating a benefit for all residents.",
"name": "Beechwood Homes",
"logoUrl": null,
"communitiesCount": 6,
"averageRatings": null,
"specialties": [
"55Plus",
"Active Adult",
"Condominiums"
],
"feedId": 14395,
"communityCards": [
{
"communityAddress": {
"longitude": -72.82687,
"latitude": 40.79917,
"city": "Moriches",
"state": "NY"
},
"providerListingId": 31956486,
"url": "/community/beechwood-at-waterways/31956486_plid/",
"style": "Adult",
"name": "Beechwood at The Waterways",
"featuredImage": {
"url": "https://photos.zillowstatic.com:443/fp/9d9450ee3ed52b7e4094e149a07695a6-p_g.jpg"
},
"minPrice": 649000,
"currency": "USD"
}
],
"boundBox": {
"north": 43.08049,
"south": 40.640395,
"east": -72.651422,
"west": -73.787071
},
"reviews": [],
"minPrice": 579000,
"currency": "USD",
"specCount": 12
}
}{
"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
Get Builder Detail
Get Builder Detail
GET
/
api
/
v1
/
builder
/
detail
Get Builder Detail
curl --request GET \
--url https://us-property-data.p.rapidapi.com/api/v1/builder/detail \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-property-data.p.rapidapi.com/api/v1/builder/detail"
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/detail', 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/detail",
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/detail"
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/detail")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us-property-data.p.rapidapi.com/api/v1/builder/detail")
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": {
"url": "/home-builder-profile/beechwood-homes/14395/",
"location": [
{
"regionId": 822230,
"urlFragment": "albany-schenectady-troy-ny/822230/",
"providerListingIds": [
30256825
],
"name": "Albany-Schenectady-Troy, NY",
"boundBox": {
"north": 43.08049,
"south": 43.08049,
"east": -73.787071,
"west": -73.787071
},
"averageRatings": null,
"reviews": []
}
],
"allCommunities": [
31956486,
29721312,
34831
],
"description": "The Beechwood Organization, ranks at the forefront of privately-owned residential homebuilders nationwide, is one of the largest developers of single family and multifamily housing in New York State, and is Long Islandβs largest homebuilder and developer of sophisticated lifestyle communities.\n\nSince 1985, Beechwood has built more than 10,000 homes in 80 communities across the New York metro area with new ones on the map in New York City, Long Island, Saratoga and North Carolina.\n\nBeechwood holds dear its commitment to thoughtful land planning and design, repurposing underutilized land, building in harmony with nature and creating a benefit for all residents.",
"name": "Beechwood Homes",
"logoUrl": null,
"communitiesCount": 6,
"averageRatings": null,
"specialties": [
"55Plus",
"Active Adult",
"Condominiums"
],
"feedId": 14395,
"communityCards": [
{
"communityAddress": {
"longitude": -72.82687,
"latitude": 40.79917,
"city": "Moriches",
"state": "NY"
},
"providerListingId": 31956486,
"url": "/community/beechwood-at-waterways/31956486_plid/",
"style": "Adult",
"name": "Beechwood at The Waterways",
"featuredImage": {
"url": "https://photos.zillowstatic.com:443/fp/9d9450ee3ed52b7e4094e149a07695a6-p_g.jpg"
},
"minPrice": 649000,
"currency": "USD"
}
],
"boundBox": {
"north": 43.08049,
"south": 40.640395,
"east": -72.651422,
"west": -73.787071
},
"reviews": [],
"minPrice": 579000,
"currency": "USD",
"specCount": 12
}
}{
"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"
}βI