Bowmark AIdocs

RVshare

RVshare's own RV rental search (rvshare.com/rv-rental/<city>/<state>) — given a US city and state, returns the real, priced listings the site itself…

RVshare's own RV rental search (rvshare.com/rv-rental/<city>/<state>) — given a US city and state, returns the real, priced listings the site itself shows: nightly rate, sleeps count, distance, rating and a link to the listing's own booking page. No login, no dates required.

Domain: rvshare.com

Also known as: RVshare, RV Share, rvshare.com

Call it directly

bowmark.providers.rvshare.searchListings(city: string, state: string, page?: number): Promise<RvshareListing[]>

Functions

FunctionWhat it does
searchListingsRuns RVshare's own results grid for a US city/state and returns the real, priced RV listings on that page — nightly rate, sleeps, distance, rating, and the listing's own detail-page URL.

Types

interface RvshareListing {
  sku: string;
  name: string;
  model: string;
  year: number | null;
  pricePerNight: number | null;
  currency: "USD";
  sleeps: number | null;
  distanceMiles: number | null;
  rating: number | null;
  reviewCount: number | null;
  detailUrl: string;
}

Examples

const listings = await bowmark.providers.rvshare.searchListings("Denver", "CO");
// listings[0].pricePerNight -> the real nightly rate RVshare shows for that RV