Skip to main content
Module

x/serpapi/src/engines/home_depot_product.ts

Scrape and parse search engine results using SerpApi.
Go to Latest
File
import type { BaseParameters } from "../types.ts";
export type HomeDepotProductParameters = BaseParameters & { /** * Product ID * HomeDepot identifier of a product */ product_id: string;
/** * ZIP Code * ZIP Postal code. To filter the shipping products by a selected area. */ delivery_zip?: string;
/** * Store ID * Store Id to filter the products by the specific store only. */ store_id?: string;};