Village Realty
Village Realty's own Outer Banks vacation-rental search and real-time property quote (rent, taxes, total, book-now link) — the same live pricing their own…
Village Realty's own Outer Banks vacation-rental search and real-time property quote (rent, taxes, total, book-now link) — the same live pricing their own site computes, no login required.
Domain: villagerealtyobx.com
Also known as: Village Realty, Village Realty OBX, Village Realty Outer Banks
Call it directly
bowmark.providers.villagerealtyobx.searchRentals(args?: { town?: string, bedrooms?: number, amenities?: string[], checkin?: string, checkout?: string, page?: number }): Promise<VillagerealtyobxListing[]>
bowmark.providers.villagerealtyobx.getQuote(args: { propertyID: string, checkin: string, checkout: string }): Promise<VillagerealtyobxQuote>Functions
| Function | What it does |
|---|---|
searchRentals | Searches Village Realty's own 900+ Outer Banks rental listings the way villagerealtyobx.com/outer-banks-vacation-rentals does — filter by town (e.g. "Corolla", "Nags Head"), exact bedroom… |
getQuote | Gets a real-time price quote for one Village Realty property and date range — the exact server-computed rent, taxes and total the rental detail page shows after picking dates, plus the… |
Types
interface VillagerealtyobxListing {
propertyID: string;
seoName: string;
name: string;
town: string;
address: string | null;
bedrooms: number | null;
maxGuests: number | null;
photoUrl: string | null;
url: string;
}
interface VillagerealtyobxQuote {
propertyID: string;
checkin: string;
checkout: string;
available: boolean;
rent: number | null;
taxes: number | null;
total: number | null;
currency: string;
bookNowURL: string | null;
message: string | null;
}