API Reference

ListDeed Connect · v1

Real estate intelligence endpoints for investors and developers. Market metrics, legal layer data, geographic reference, and location risk — structured APIs no competitor offers.

1 endpoint · Regulations
1 endpoint · Platform Coverage
1 endpoint · Valuation
1 endpoint · AI Research
3 endpoints · Market Intelligence
3 endpoints · Legal Intelligence
3 endpoints · Geographic Reference
1 endpoint · Location Risk
1 endpoint · Address

Authentication

Every request requires your API key in the X-ListDeed-Key header. Keys are scoped to your account — never expose them in client-side code or public repositories.

Request header
X-ListDeed-Key: ld_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Keep your key secret. Use environment variables or a secrets manager. Rotate via the dashboard if compromised.

Base URL

All endpoints
https://api.listdeed.com/v1/

All responses are application/json. All parameters are query string parameters unless otherwise noted.

Rate Limits

Rate limit state is returned on every response: X-RateLimit-LimitX-RateLimit-RemainingX-RateLimit-Reset (Unix timestamp of next window reset).

Plan Monthly calls Burst limit
Included — bundled with any ListDeed subscription1,000 calls10 req/min
Pro — $49/month50,000 calls60 req/min
Enterprise — custom SLAUnlimitedNegotiated

Error Codes

All errors return a JSON body with a message string and, when applicable, an errors array with per-field validation details.

Code Name Description
400Bad RequestMissing or malformed required parameters. Check the errors array in the response body.
401UnauthorizedMissing or invalid API key. Pass your key in the X-ListDeed-Key header.
403ForbiddenYour key does not have access to this endpoint. Upgrade your plan or check key permissions.
404Not FoundResource not found (e.g. unsupported state code or city with no data).
422Unprocessable EntityParameters failed validation (e.g. invalid state code). See errors array.
429Too Many RequestsRate limit exceeded. Check X-RateLimit-Remaining and X-RateLimit-Reset headers.
500Internal Server ErrorUnexpected server error. Retry with exponential backoff. Contact support if persistent.

Regulations

Live

Structured jurisdictional regulation data for US states. Query active rules by state, category (landlord_tenant, eviction, zoning…), or jurisdiction level. Sourced and reviewed annually by the ListDeed legal team.

GET/v1/regulations/lookup
NewLive

Regulations Lookup

Returns active jurisdictional regulations for a US state. Filter by category, subcategory, jurisdiction level (state / county / city / zip), county FIPS, or city name. Results are ordered most-specific-first (city > county > state). Cached 24 hours per unique parameter combination.

Legal data disclaimer

All /v1/legal/* responses include a disclaimer field and a last_reviewed_at date. Data reflects statutes in effect as of the review date and is reviewed annually. This data does not constitute legal advice — verify current statutes before acting.

Query Parameters

Param Type Required Description
statestringrequired2-letter state code (uppercase, e.g. TX)
categorystringoptionallandlord_tenant | eviction | creative_finance | adverse_possession | foreclosure | zoning | disclosure | rent_control | tax_deed_lien
subcategorystringoptionalSubcategory within the chosen category
jurisdiction_levelstringoptionalstate | county | city | zip — scope to a specific level
county_fipsstringoptional5-digit FIPS county code
citystringoptionalCity name — case-insensitive partial match

Request

curl
curl "https://api.listdeed.com/v1/regulations/lookup?state=TX&category=eviction" \
  -H "X-ListDeed-Key: ld_live_xxxxxxxxxxxx"

Response 200 OK

200application/json
[
  {
    "id": "reg_tx_eviction_001",
    "jurisdiction_level": "state",
    "state_code": "TX",
    "county_fips": null,
    "city": null,
    "category": "eviction",
    "subcategory": "notice_periods",
    "title": "Texas Non-Payment Eviction Notice",
    "summary": "Landlord must provide 3 days written notice to vacate before filing a forcible detainer suit for non-payment of rent.",
    "structured_data": {
      "notice_days": 3,
      "notice_type": "written",
      "filing_court": "Justice of the Peace"
    },
    "source_citation": "TX Prop. Code §24.005",
    "source_url": "https://statutes.capitol.texas.gov/...",
    "effective_date": "1995-09-01",
    "status": "active",
    "verified_at": "2026-01-15",
    "last_reviewed_at": "2026-01-15"
  }
]

Response Fields

Field Type Description
[]object[]Array of active regulation objects (max 100), ordered most-specific-first.
[].idstringUnique regulation ID
[].jurisdiction_levelstringstate | county | city | zip
[].state_codestring2-letter state code
[].county_fipsstring | null5-digit FIPS code (county/city records only)
[].citystring | nullCity name (city-level records only)
[].categorystringRegulation category
[].subcategorystringRegulation subcategory
[].titlestringShort descriptive title
[].summarystringPlain-English summary of the rule
[].structured_dataobject | nullMachine-readable rule parameters (key thresholds, timelines, amounts)
[].source_citationstring | nullStatutory citation (e.g. TX Prop. Code §91.001)
[].source_urlstring | nullURL to the official statute or ordinance
[].effective_datestring | nullDate the rule became effective (ISO 8601)
[].statusstringactive | pending | expired
[].verified_atstring | nullDate last verified by the ListDeed legal team
[].last_reviewed_atstring | nullDate last reviewed against current statutes

Platform Coverage

Live

Real-time platform coverage stats — address database size, regulation counts by category, and geographic distribution from the BQ warehouse. No API key required. Safe to call from public dashboards.

GET/v1/coverage/summary
Live

Coverage Summary

Aggregate platform coverage stats merged from the BQ warehouse (via Vera) and live Supabase counts. Returns address totals, active regulations broken down by all 9 categories, and geographic coverage figures. Cached 6 hours.

Request

curl
curl "https://api.listdeed.com/v1/coverage/summary"

Response 200 OK

200application/json
{
  "addresses": 847293,
  "regulations": 35,
  "regulations_by_category": {
    "landlord_tenant": 10,
    "eviction": 5,
    "creative_finance": 4,
    "adverse_possession": 2,
    "foreclosure": 3,
    "zoning": 3,
    "disclosure": 2,
    "rent_control": 3,
    "tax_deed_lien": 3
  },
  "states": 10,
  "cities": 47,
  "zips": 24,
  "counties": 22,
  "data_points": 2880,
  "last_refreshed": "2026-04-22T18:30:00Z",
  "meta": { "cached": true }
}

Response Fields

Field Type Description
addressesnumberTotal address records in the ListDeed database
regulationsnumberTotal active regulation records across all categories and states
regulations_by_categoryobjectActive count keyed by category: landlord_tenant, eviction, creative_finance, adverse_possession, foreclosure, zoning, disclosure, rent_control, tax_deed_lien
statesnumberStates with coverage in the BQ warehouse
citiesnumberCities with BQ warehouse coverage
zipsnumberZIP codes with BQ warehouse coverage
countiesnumberCounties with BQ warehouse coverage
data_pointsnumberTotal data points across all BQ warehouse tables
last_refreshedstring | nullISO 8601 timestamp of last BQ warehouse refresh
meta.cachedbooleanTrue if this response was served from the 6-hour Upstash cache

Valuation

Automated Valuation Model (AVM) estimates powered by Vera. Returns estimated market value, confidence interval, and comp-derived price-per-sqft for a specific property.

POST/v1/valuation/estimate
Live

AVM Estimate

Accepts a property address and optional attributes, returns an AVM point estimate with 80% confidence interval. Vera synthesises BQ warehouse comps, zip price index, and property condition to produce the estimate.

Query Parameters

Param Type Required Description
zipstringrequired5-digit ZIP code of the property
addressstringrequiredStreet address (e.g. 1234 Main St)
sqftnumberoptionalLiving area in sqft — improves estimate accuracy
conditionstringoptionalexcellent | good | fair | poor (default: good)

Request

curl
curl -X POST "https://api.listdeed.com/v1/valuation/estimate" \
  -H "X-ListDeed-Key: ld_live_xxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{"zip":"78702","address":"1234 East 6th Street","sqft":1450,"condition":"good"}'

Response 200 OK

200application/json
{
  "address": "1234 East 6th Street",
  "zip": "78702",
  "city": "Austin",
  "state": "TX",
  "estimated_value": 498000,
  "value_low": 462000,
  "value_high": 534000,
  "price_per_sqft": 343,
  "confidence": "high",
  "comp_count": 18,
  "as_of": "2026-03-15"
}

Response Fields

Field Type Description
addressstringNormalised property address
zipstringZIP code
estimated_valuenumberAVM point estimate in USD
value_lownumberLow end of 80% confidence interval
value_highnumberHigh end of 80% confidence interval
price_per_sqftnumber | nullImplied $/sqft. null if sqft was not provided.
confidencestringlow | medium | high — based on comp density and data recency
comp_countnumberComparable sales used to produce the estimate
as_ofstringMost recent comparable sale date used (ISO 8601)

AI Research

Natural language market research powered by Vera — ListDeed's AI intelligence layer. Ask questions about markets, investment strategy, regulations, and property data in plain English.

POST/v1/research/query
Live

Natural Language Research Query

Accepts a natural language question and optional geographic context. Vera synthesises platform data, BQ warehouse metrics, and regulation records to produce a structured answer with citations. Use depth: 'deep' for comprehensive analysis.

Query Parameters

Param Type Required Description
querystringrequiredNatural language question (e.g. "What is the eviction timeline in Texas for non-payment?")
context.zipstringoptionalZIP code context to scope the answer
context.citystringoptionalCity context
context.statestringoptional2-letter state code context
depthstringoptionalquick (faster, concise) | deep (comprehensive with full citations). Default: quick.

Request

curl
curl -X POST "https://api.listdeed.com/v1/research/query" \
  -H "X-ListDeed-Key: ld_live_xxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{"query":"What is the eviction timeline in Texas?","context":{"state":"TX"},"depth":"quick"}'

Response 200 OK

200application/json
{
  "answer": "In Texas, the standard non-payment eviction process requires 3 days written notice to vacate, followed by a forcible detainer suit in Justice of the Peace court. An uncontested eviction typically completes in 21–30 days from notice to writ. Contested cases average 45–60 days.",
  "sources": [
    { "type": "regulation", "category": "eviction", "citation": "TX Prop. Code §24.005" }
  ],
  "confidence": "high",
  "depth": "quick",
  "processing_ms": 420
}

Response Fields

Field Type Description
answerstringSynthesised plain-English answer
sourcesobject[]Data sources cited in the answer (regulations, comps, BQ warehouse)
confidencestringlow | medium | high — based on data coverage for the query context
depthstringquick | deep — the depth tier used
processing_msnumberServer-side processing time in milliseconds

Market Intelligence

Aggregate market metrics derived from anonymised community-reported comps, county records, and building permit data.

GET/v1/market/rehab-score
Phase 1

Market Rehab Momentum Score

Returns a 0–100 composite score representing active renovation momentum in a zip code. Derived from building permits, flip velocity, and active rehab listings. The leading indicator your competitors don't have.

Query Parameters

Param Type Required Description
zipstringrequired5-digit US zip code
monthsnumberoptionalLookback window in months (3–24, default 6)

Request

curl
curl "https://api.listdeed.com/v1/market/rehab-score?zip=78702&months=6" \
  -H "X-ListDeed-Key: ld_live_xxxxxxxxxxxx"

Response 200 OK

200application/json
{
  "zip_code": "78702",
  "city": "Austin",
  "state": "TX",
  "rehab_momentum_score": 73,
  "label": "Hot",
  "trend": "up",
  "trend_pct": 12.4,
  "confidence": "high",
  "as_of": "2026-03-01"
}

Response Fields

Field Type Description
zip_codestringRequested zip code
citystringPrimary city for this zip
statestring2-letter state code
rehab_momentum_scorenumber0–100 composite score. Higher = more active renovation in the market.
labelstringHuman-readable label: Cold | Warming | Active | Hot | Very Hot
trendstring30-day trend direction: up | flat | down
trend_pctnumberPercentage change vs. prior period
confidencestringConfidence tier based on sample count: low | medium | high
as_ofstringDate of most recent underlying data (ISO 8601)
GET/v1/market/investor-overview
Phase 1

Investor Market Overview

Full suite of investor-specific market metrics for a city. Covers investor purchase rate, flip velocity, gross flip margins, distressed pipeline depth, and platform deal flow — all in one call. No equivalent exists in any competing real estate API.

Query Parameters

Param Type Required Description
citystringrequiredCity name (URL-encoded)
statestringrequired2-letter state code (uppercase)
monthsnumberoptionalLookback window in months (3–24, default 12)

Request

curl
curl "https://api.listdeed.com/v1/market/investor-overview?city=Austin&state=TX" \
  -H "X-ListDeed-Key: ld_live_xxxxxxxxxxxx"

Response 200 OK

200application/json
{
  "city": "Austin",
  "state": "TX",
  "investor_purchase_rate_pct": 18.4,
  "flip_velocity_days": 142,
  "gross_flip_margin_pct": 24.7,
  "distressed_pipeline_count": 312,
  "platform_active_deals": 47,
  "market_tier": "secondary",
  "confidence": "high",
  "as_of": "2026-03-01"
}

Response Fields

Field Type Description
citystringRequested city
statestring2-letter state code
investor_purchase_rate_pctnumberPercentage of all sales in the period purchased by investors
flip_velocity_daysnumberMedian days from investor purchase to re-list (flipped properties)
gross_flip_margin_pctnumberMedian gross profit margin on flipped properties in period
distressed_pipeline_countnumberActive pre-foreclosure + tax-delinquent property count in market
platform_active_dealsnumberActive ListDeed deals in this market (opt-in community data only)
market_tierstringMarket classification: primary | secondary | tertiary | rural
confidencestringlow | medium | high — based on underlying sample count
as_ofstringDate of most recent underlying data (ISO 8601)
GET/v1/market/comps
Phase 1

Comparable Sales Aggregates

Anonymised comparable sales aggregates for a zip code. Returns P25/median/P75 price per sqft, median days on market, and list-to-sale ratio. Source: anonymised community-reported comps from active ListDeed users.

Query Parameters

Param Type Required Description
zipstringrequired5-digit US zip code
monthsnumberoptionalLookback window in months (3–24, default 6)
property_typestringoptionalsfr | multi | condo | land | commercial (default: sfr)

Request

curl
curl "https://api.listdeed.com/v1/market/comps?zip=78702&months=6&property_type=sfr" \
  -H "X-ListDeed-Key: ld_live_xxxxxxxxxxxx"

Response 200 OK

200application/json
{
  "zip_code": "78702",
  "city": "Austin",
  "state": "TX",
  "property_type": "sfr",
  "sample_count": 83,
  "price_per_sqft": { "p25": 248, "median": 312, "p75": 389 },
  "days_on_market": { "median": 24 },
  "list_to_sale_ratio": 0.97,
  "confidence": "high",
  "as_of": "2026-02-28"
}

Response Fields

Field Type Description
zip_codestringRequested zip code
sample_countnumberComps in period. null if < 5 (minimum cohort enforcement)
price_per_sqft.p25number25th percentile price per sqft
price_per_sqft.mediannumberMedian price per sqft
price_per_sqft.p75number75th percentile price per sqft
days_on_market.mediannumberMedian days on market for sold properties
list_to_sale_rationumberMedian (sale price ÷ list price). >1.0 = over asking.
confidencestringlow (5–19 comps) | medium (20–49) | high (50+)
as_ofstringMost recent comp date in the period (ISO 8601)

Geographic Reference

New

Canonical geographic reference data: FIPS codes, MSA/CBSA classifications, market tiers, rent control flags, and city-level metadata for 5,000+ US markets.

GET/v1/geo/states
NewPhase 1

All States Overview

Returns all 50 states with landlord friendliness score, tax foreclosure type, and lien vs. deed classification — the fastest way to compare investment climates across states.

Request

curl
curl "https://api.listdeed.com/v1/geo/states" \
  -H "X-ListDeed-Key: ld_live_xxxxxxxxxxxx"

Response 200 OK

200application/json
{
  "count": 50,
  "states": [
    {
      "state_code": "AZ", "state_name": "Arizona",
      "landlord_friendliness_score": 78, "landlord_friendliness_label": "Landlord-Friendly",
      "foreclosure_type": "non-judicial", "lien_or_deed": "lien",
      "interest_rate_pct": 16, "redemption_period_months": 3
    },
    {
      "state_code": "FL", "state_name": "Florida",
      "landlord_friendliness_score": 71, "landlord_friendliness_label": "Landlord-Friendly",
      "foreclosure_type": "judicial", "lien_or_deed": "lien",
      "interest_rate_pct": 18, "redemption_period_months": 24
    },
    {
      "state_code": "TX", "state_name": "Texas",
      "landlord_friendliness_score": 87, "landlord_friendliness_label": "Very Landlord-Friendly",
      "foreclosure_type": "non-judicial", "lien_or_deed": "deed",
      "interest_rate_pct": null, "redemption_period_months": 6
    }
  ]
}

Response Fields

Field Type Description
countnumberTotal states returned (always 50)
states[]object[]Array of 50 state summary objects
states[].state_codestring2-letter state code
states[].state_namestringFull state name
states[].landlord_friendliness_scorenumber0–100 composite landlord friendliness score
states[].foreclosure_typestringjudicial | non-judicial | hybrid
states[].lien_or_deedstringlien | deed | hybrid
states[].interest_rate_pctnumber | nullStatutory annual rate (lien states only). null for deed states.
states[].redemption_period_monthsnumber | nullRedemption period in months. null for deed states.
GET/v1/geo/lookup
NewPhase 1

City / Market Lookup

Returns full geographic and legal metadata for a city in a single call: FIPS code, county, MSA/CBSA name, market tier, zip codes, rent control flag, landlord risk score, and tax foreclosure type.

Query Parameters

Param Type Required Description
citystringrequiredCity name (URL-encoded)
statestringrequired2-letter state code (uppercase)

Request

curl
curl "https://api.listdeed.com/v1/geo/lookup?city=Austin&state=TX" \
  -H "X-ListDeed-Key: ld_live_xxxxxxxxxxxx"

Response 200 OK

200application/json
{
  "state_code": "TX",
  "state_name": "Texas",
  "city_name": "Austin",
  "county_name": "Travis County",
  "fips_code": "48453",
  "metro_area": "Austin-Round Rock-Georgetown, TX",
  "market_tier": "secondary",
  "zip_codes": ["78701", "78702", "78703", "78704", "78705"],
  "has_city_rent_control": false,
  "has_city_eviction_protections": false,
  "is_investor_active": true,
  "landlord_risk": { "friendliness_score": 87, "label": "Very Landlord-Friendly" },
  "tax_type": "deed",
  "interest_rate_pct": null,
  "redemption_period_months": 6
}

Response Fields

Field Type Description
state_codestring2-letter state code
state_namestringFull state name
city_namestringCanonical city name
county_namestringCounty containing the city
fips_codestring5-digit FIPS county code
metro_areastringMSA/CBSA name (e.g. Austin-Round Rock-Georgetown, TX)
market_tierstringprimary | secondary | tertiary | rural
zip_codesstring[]ZIP codes within this city boundary
has_city_rent_controlbooleanTrue if city has active rent control ordinances
has_city_eviction_protectionsbooleanTrue if city has additional eviction protections beyond state law
is_investor_activebooleanTrue if ListDeed has active users in this market
landlord_risk.friendliness_scorenumberState landlord friendliness score (0–100)
landlord_risk.labelstringHuman-readable friendliness label
tax_typestringlien | deed | hybrid
interest_rate_pctnumber | nullStatutory annual interest rate (lien states only)
redemption_period_monthsnumber | nullRedemption period in months after auction
GET/v1/geo/markets
NewPhase 1

Markets by State

Returns all tracked cities and markets for a given state with market tier, investor activity flag, and rent control indicator.

Query Parameters

Param Type Required Description
statestringrequired2-letter state code (uppercase)
tierstringoptionalFilter: primary | secondary | tertiary | rural
investor_activebooleanoptionalIf true, only return markets with active ListDeed platform users

Request

curl
curl "https://api.listdeed.com/v1/geo/markets?state=TX&investor_active=true" \
  -H "X-ListDeed-Key: ld_live_xxxxxxxxxxxx"

Response 200 OK

200application/json
{
  "state_code": "TX",
  "count": 8,
  "markets": [
    { "city_name": "Austin", "county_name": "Travis County", "market_tier": "secondary", "is_investor_active": true, "has_city_rent_control": false },
    { "city_name": "Houston", "county_name": "Harris County", "market_tier": "primary", "is_investor_active": true, "has_city_rent_control": false },
    { "city_name": "Dallas", "county_name": "Dallas County", "market_tier": "primary", "is_investor_active": true, "has_city_rent_control": false }
  ]
}

Response Fields

Field Type Description
state_codestring2-letter state code
countnumberNumber of markets returned
markets[].city_namestringCity name
markets[].county_namestringCounty
markets[].market_tierstringprimary | secondary | tertiary | rural
markets[].is_investor_activebooleanPlatform activity flag
markets[].has_city_rent_controlbooleanCity-level rent control flag

Location Risk

Physical risk scores. FEMA flood zone data, EPA Superfund proximity, and composite environmental risk — pre-computed from bulk government datasets for sub-50ms responses.

GET/v1/location/risk
Phase 1

Location Risk Score

Returns FEMA flood zone classification, EPA Superfund site proximity, and a composite 0–100 environmental risk score for a zip code or lat/lng coordinate. Pre-computed from bulk FEMA NFHL shapefile and EPA Superfund dataset — no per-call government API latency.

Query Parameters

Param Type Required Description
zipstringoptional5-digit US zip code
latnumberoptionalLatitude — use with lng for point-level lookup
lngnumberoptionalLongitude — use with lat

Request

curl
curl "https://api.listdeed.com/v1/location/risk?zip=78702" \
  -H "X-ListDeed-Key: ld_live_xxxxxxxxxxxx"

Response 200 OK

200application/json
{
  "zip_code": "78702",
  "city": "Austin",
  "state": "TX",
  "flood_zone": "X",
  "flood_risk_label": "Minimal",
  "flood_risk_notes": "Zone X: outside the 500-year floodplain. No flood insurance required by lenders.",
  "superfund_nearby": false,
  "superfund_count_1mi": 0,
  "environmental_risk_score": 12,
  "confidence": "high",
  "as_of": "2026-01-01"
}

Response Fields

Field Type Description
zip_codestringZip code queried (or derived from lat/lng)
flood_zonestringFEMA NFHL flood zone designation (e.g. X, A, AE, VE)
flood_risk_labelstringMinimal | Low | Moderate | High | Very High
flood_risk_notesstringPlain-English flood zone description
superfund_nearbybooleanTrue if any EPA Superfund site within 1 mile
superfund_count_1minumberCount of Superfund sites within 1 mile
environmental_risk_scorenumber0–100 composite environmental risk (higher = more risk)
confidencestringlow | medium | high — based on spatial data coverage
as_ofstringDate of most recent underlying FEMA/EPA data (ISO 8601)

Address

Real estate-aware address search and autocomplete backed by 600M+ OpenAddresses records.

GET/v1/address/autocomplete
Phase 1

Address Autocomplete

Returns address suggestions for a partial input string. Backed by OpenAddresses (600M+ US addresses indexed in Typesense). Returns property attributes — beds, baths, sqft — alongside the address match for property-aware autocomplete UIs.

Query Parameters

Param Type Required Description
qstringrequiredPartial address string (minimum 3 characters)
limitnumberoptionalMaximum results to return (1–10, default 5)
statestringoptionalScope results to a specific state (2-letter code)

Request

curl
curl "https://api.listdeed.com/v1/address/autocomplete?q=1234+Main+St+Austin&limit=5" \
  -H "X-ListDeed-Key: ld_live_xxxxxxxxxxxx"

Response 200 OK

200application/json
{
  "query": "1234 Main St Austin",
  "results": [
    {
      "address": "1234 Main Street", "city": "Austin", "state": "TX", "zip": "78701",
      "county": "Travis County", "lat": 30.2672, "lng": -97.7431,
      "beds": 3, "baths": 2, "sqft": 1480
    },
    {
      "address": "1234 Main Street", "city": "Round Rock", "state": "TX", "zip": "78664",
      "county": "Williamson County", "lat": 30.5083, "lng": -97.6789,
      "beds": null, "baths": null, "sqft": null
    }
  ]
}

Response Fields

Field Type Description
querystringThe search query that was sent
results[]object[]Array of address matches ordered by relevance
results[].addressstringFull formatted street address
results[].citystringCity
results[].statestring2-letter state code
results[].zipstringZIP code
results[].countystringCounty name
results[].latnumberLatitude (for map pinning and /v1/location/risk point lookups)
results[].lngnumberLongitude
results[].bedsnumber | nullBedroom count from property record (null if unavailable)
results[].bathsnumber | nullBathroom count (null if unavailable)
results[].sqftnumber | nullSquare footage (null if unavailable)

Ready to start building?