Bowmark AIdocs

BigRentz

BigRentz's own equipment catalog — search, category browse and per-item detail, real data from their WooCommerce Store API.

BigRentz's own equipment catalog — search, category browse and per-item detail, real data from their WooCommerce Store API. Live rental pricing is not yet built (site gates it behind a location + date picker); see getRentalPricing.

Domain: bigrentz.com

Also known as: BigRentz, BigRentz, Inc.

Call it directly

bowmark.providers.bigrentz.search(query: string): Promise<BigrentzEquipmentRow[]>
bowmark.providers.bigrentz.getEquipment(slug: string): Promise<BigrentzEquipmentDetail>
bowmark.providers.bigrentz.listCategories(options?: { parentSlug?: string }): Promise<BigrentzCategoryRow[]>

Functions

FunctionWhat it does
searchSearches BigRentz's equipment catalog by free text (e.g. "boom lift", "40 ft boom lift") and returns matching rows.
getEquipmentReads one piece of equipment in full by the slug search or listCategories returned — description, spec-sheet PDF links, category and stock flag.
listCategoriesLists BigRentz's equipment categories — id, name, slug, live listing count, category page URL.

Types

interface BigrentzEquipmentRow {
  id: number;
  name: string;
  slug: string;
  permalink: string;
  categories: { id: number; name: string; slug: string }[];
  images: { src: string; alt: string }[];
  inStock: boolean;
  priced: false;
  priceNote: string;
}
interface BigrentzEquipmentDetail extends BigrentzEquipmentRow {
  description: string;
  specSheetUrls: string[];
}
interface BigrentzCategoryRow {
  id: number;
  name: string;
  slug: string;
  count: number;
  permalink: string;
}