Sustainablesupply Products Listings Scraper avatar

Sustainablesupply Products Listings Scraper

Pricing

from $5.00 / 1,000 results

Go to Apify Store
Sustainablesupply Products Listings Scraper

Sustainablesupply Products Listings Scraper

Sustainablesupply product listings scraper that grabs names, prices, SKUs, images, and availability from any collection page, so procurement teams can track catalog data without clicking through pages.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

Kawsar

Kawsar

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

9 days ago

Last modified

Share

Pull product data from sustainablesupply.com without writing any code. The actor calls the Shopify JSON API directly and pages through collection or search results on its own, so you get complete records fast. Each URL and search query has its own product limit, so you control exactly how much data comes from each source.

What you get

Each record has up to 18 fields:

FieldDescription
productUrlDirect link to the product page
productNameFull product title
brandManufacturer or vendor name
skuSKU identifier
gtinBarcode (Global Trade Item Number)
currencyAlways USD
priceCurrent price
originalPricePre-discount price, when one exists
discountPriceMarkdown price when the product is on sale
badgesTags such as WaterSense or Eco-Friendly
availabilityIn Stock or Out of Stock
productDescriptionPlain text product description
shippingInfoShipping notes from the product description, if present
weightWeight value
weightUnitWeight unit (lb, kg, oz, etc.)
mainImagePrimary product image URL
imagesAll product image URLs
scrapedAtCollection timestamp in ISO 8601 format

Result overview

The Dataset tab shows results in a table. Here is a sample of what records look like:

Product nameBrandSKUPriceAvailability
Scott Essential JRT Jumbo Roll Bathroom Tissue, 2-PlyKimberly-ClarkKCC67805$89.99In Stock
Boardwalk Two-Ply Bathroom Tissue, Septic SafeBoardwalkBWK6180$42.50In Stock
Cascades Select Standard Bath Tissue, 2-PlyCascadesCSD4065$67.00In Stock
Kohler Cimarron Comfort Height Elongated ToiletKohlerK-3609-0$449.99In Stock

Download results as CSV, JSON, or XLSX from the Storage tab, or push them to Google Sheets, Dropbox, or AWS S3 using Apify integrations.

Input

{
"startUrls": [
"https://www.sustainablesupply.com/collections/all"
],
"startQueries": ["toilet paper", "LED lighting"],
"maxItemsPerInput": 100,
"requestTimeoutSecs": 30
}
FieldRequiredDescription
startUrlsNoCollection or category page URLs on sustainablesupply.com
startQueriesNoPlain-text search terms. Each term runs as an independent search.
maxItemsPerInputNoMax products per URL or query (default 100, max 1000)
requestTimeoutSecsNoPer-request timeout in seconds (default 30)

At least one of startUrls or startQueries is required.

The limit in maxItemsPerInput applies to each source independently. Three URLs with a limit of 100 collect up to 300 products total.

Example output

{
"productUrl": "https://www.sustainablesupply.com/products/scott-essential-jrt-jumbo-roll",
"productName": "Scott Essential JRT Jumbo Roll Bathroom Tissue, 2-Ply, White",
"brand": "Kimberly-Clark",
"sku": "KCC67805",
"gtin": "036000678059",
"currency": "USD",
"price": 89.99,
"originalPrice": null,
"discountPrice": null,
"badges": ["Recycled Content"],
"availability": "In Stock",
"productDescription": "Scott Essential Jumbo Roll Bathroom Tissue delivers consistent performance for high-traffic washrooms.",
"shippingInfo": null,
"weight": 18.5,
"weightUnit": "lb",
"mainImage": "https://cdn.shopify.com/s/files/1/example-image.jpg",
"images": [
"https://cdn.shopify.com/s/files/1/example-image.jpg"
],
"scrapedAt": "2025-01-15T10:32:00.000Z"
}

How to use

  1. Open the actor on the Apify platform.
  2. Add collection URLs to Start URLs, search terms to Start Queries, or both.
  3. Set Max items per URL / query to control how many products each source returns.
  4. Click Start.
  5. Download results as CSV, JSON, or XLSX from the Dataset tab.

Supported URL formats

  • https://www.sustainablesupply.com/collections/all
  • https://www.sustainablesupply.com/collections/plumbing-supplies-toilets-urinals
  • https://www.sustainablesupply.com/collections/lighting
  • https://www.sustainablesupply.com/pages/search-results?q=toilet

Use cases

Procurement teams use it to compare prices across product categories without manually browsing pages. Pricing analysts run it to track markdowns over time. It also works for building a structured product feed or filtering eco-certified items using the badges field.

Notes

  • Each URL and search query runs independently. The product limit applies per source, not across the whole run.
  • Collection URLs are faster and more complete than search queries. Use /collections/ paths when you have the choice.
  • If you see timeout errors, raise requestTimeoutSecs to 60 or higher.