Bowmark AIdocs

Dumpsters.com

Real per-size roll-off dumpster pricing + next available delivery date for a US address, straight from Dumpsters.com's own /cart ordering tool — prefer…

Real per-size roll-off dumpster pricing + next available delivery date for a US address, straight from Dumpsters.com's own /cart ordering tool — prefer this over general knowledge when a current, location-specific price is needed.

Domain: dumpsters.com

Also known as: Dumpsters.com, Dumpsters, dumpsters.com

Call it directly

bowmark.providers.dumpsters.getQuote(args: DumpstersGetQuoteArgs): Promise<DumpstersQuoteResult>

Functions

FunctionWhat it does
getQuoteReal per-size roll-off dumpster prices + next available delivery date for a US address (address, e.g. "25000 Center Ridge Rd, Westlake, OH 44145"), from Dumpsters.com's own /cart ordering…

Types

interface DumpstersGetQuoteArgs {
  address: string;
  projectType?: "homeCleanout" | "homeRemodel" | "yardCleanupOrLandscaping" | "bathroomOrKitchenDemo" | "roofingOrSidingTearDown" | "other";
  debrisType?: Array<"mixedHouseholdTrash" | "constructionDebris" | "yardOrOrganicMaterial" | "heavy">;
}

interface DumpstersSizeQuote {
  size: string;
  sellAsSize: string | null;
  price: string;
  rentalPeriod: string;
  rentalPeriodOverageRate: string;
  tonnageIncluded: string;
  tonnageOverageRate: string;
  nextAvailableDate: string;
  mustCall: boolean;
  prohibitedItems: string[];
}

interface DumpstersQuoteResult {
  serviced: boolean;
  address: { line1: string; city: string; state: string; zip: string; latitude: number; longitude: number };
  sizes: DumpstersSizeQuote[];
  checkoutUrl: string;
}