Bowmark AIdocs

Arbor Homes

Arbor Homes — Indiana/Ohio/Kentucky new-construction homebuilder (Clayton Properties Group). searchHomes reads its live quick-move-in inventory (price,…

Arbor Homes — Indiana/Ohio/Kentucky new-construction homebuilder (Clayton Properties Group). searchHomes reads its live quick-move-in inventory (price, beds/baths/sqft, status, availability); getHome reads one listing by id. Both return the site's own NterNow self-guided-tour booking link where the listing has it enabled.

Domain: yourarborhome.com

Also known as: Arbor Homes, Arbor, yourarborhome.com, yourarborhome

Call it directly

bowmark.providers.yourarborhome.searchHomes(filters?: SearchHomesFilters): Promise<ArborHome[]>
bowmark.providers.yourarborhome.getHome(uniqueName: string): Promise<ArborHome>

Functions

FunctionWhat it does
searchHomesReads Arbor Homes' live quick move-in inventory off yourarborhome.com/homes and returns rows matching the optional filters (city, price range, min beds/baths/sqft, status) — real price,…
getHomeReads one Arbor Homes listing by the uniqueName id searchHomes returns — the same row, for a caller that already picked a home and wants its detail-page URL and self-tour link without…

Types

interface ArborHome {
  uniqueName: string;
  headline: string;
  status: string;
  price: number | null;
  beds: number | null;
  bathsFull: number | null;
  bathsHalf: number | null;
  sqft: number | null;
  stories: number | null;
  moveInDate: string | null;
  address: { street: string; city: string; state: string; postalCode: string };
  detailUrl: string | null;
  selfTourUrl: string | null;
}
interface SearchHomesFilters {
  city?: string;
  minPrice?: number;
  maxPrice?: number;
  minBeds?: number;
  minBaths?: number;
  minSqft?: number;
  status?: string;
}