Sodimac Chile Products, Prices & Discounts Scraper avatar

Sodimac Chile Products, Prices & Discounts Scraper

Pricing

from $6.80 / 1,000 results

Go to Apify Store
Sodimac Chile Products, Prices & Discounts Scraper

Sodimac Chile Products, Prices & Discounts Scraper

Scrape Sodimac Chile (sodimac.cl) product listings with product name, brand, current and original price, discount percentage, SKU, rating, review count, availability, seller, category and image. Search by keyword or category URL. Export to JSON, CSV or Excel.

Pricing

from $6.80 / 1,000 results

Rating

0.0

(0)

Developer

Scrapers Lat

Scrapers Lat

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

7 days ago

Last modified

Share

Sodimac Chile Products, Prices & Discounts Scraper

Sodimac Chile Products, Prices & Discounts Scraper

Here is one real result, with every field the actor returns:

{
"productName": "Kit Taladro Perc.+ Atornillador 20v + 2 Bat Dck223d2",
"brand": "DEWALT",
"priceAmount": 319990,
"originalPrice": 349990,
"currency": "CLP",
"discountPct": 9,
"sku": "114087188",
"productId": "114087187",
"rating": 4.72,
"reviewCount": 75,
"availability": "InStock",
"seller": "TUS HERRAMIENTAS",
"isSponsored": true,
"isBestSeller": false,
"category": "Taladros",
"keyword": "taladro",
"productUrl": "https://www.sodimac.cl/sodimac-cl/articulo/114087187/Kit-Taladro-Perc.+-Atornillador-20v-+-2-Bat-Dewalt-Dck223d2?exp=so_com",
"imageUrl": "https://media.sodimac.cl/falabellaCL/114087188_01/public",
"country": "CL",
"source": "sodimac",
"observedAt": "2026-08-10T14:35:33.216Z"
}

The most complete Sodimac Chile product scraper available. It returns every field a Sodimac Chile search result exposes for each product, plus the current and original price, a computed discount percentage, marketplace seller, sponsored and best-seller flags and ratings, so you can track catalog, pricing and promotions across many keywords or category URLs in one run.

📥 Input · 📤 Output · 💰 Pricing · ▶️ Examples

Apify Coverage Output Billing

Table of contents

What it does

The actor searches Sodimac Chile (sodimac.cl) for each keyword or category/search URL you pass, paginates through the results, and writes one normalized record per product to the run's dataset. Each record carries the current price, the original (crossed-out) price, a computed discountPct, the marketplace seller, availability, rating and review count, plus sponsored and best-seller flags so you can separate paid placements from organic listings.

You can mix plain keywords (for example taladro) and full category or search URLs in the same run. Results from all inputs are combined into one dataset.

Quickstart

Open the actor, paste this into the input, and press Run. It returns up to 10 products for the keyword "taladro".

{
"keywords": ["taladro"],
"maxProducts": 10
}

Every input field is optional. Provide at least one keyword or category URL in keywords to get results.

Input reference

FieldTypeRequiredDefaultDescription
keywordsstring[]no["taladro"]One or more Sodimac Chile search keywords (for example taladro, pintura) and/or full sodimac.cl category or search URLs (for example https://www.sodimac.cl/sodimac-cl/lista/cat14080023/Taladros). Each item runs as its own search; results from all items are combined.
maxProductsintegerno10Maximum number of products to return across all keywords/URLs in this run. Free Apify plans are capped at 10 per run.

Output reference

One dataset item per product. Types: string, number, boolean, or null when the source value is absent.

FieldTypeDescription
productNamestringProduct title as listed.
brandstringBrand name.
priceAmountnumberCurrent selling price, in the listed currency.
originalPricenumberOriginal (pre-discount) price, or null when there is no discount.
currencystringISO currency code, normally CLP.
discountPctnumberDiscount percentage computed from priceAmount and originalPrice, or null.
skustringSodimac SKU of the specific variant.
productIdstringSodimac product identifier.
ratingnumberAverage customer rating, or null.
reviewCountnumberNumber of customer reviews, or null.
availabilitystringAvailability status, for example InStock.
sellerstringMarketplace seller name.
isSponsoredbooleantrue when the listing is a sponsored/paid placement.
isBestSellerbooleantrue when the listing carries a best-seller badge.
categorystringCategory the product was found in.
keywordstringThe input keyword or URL that produced this result.
productUrlstringPublic product page URL.
imageUrlstringMain product image URL.
countrystringMarket country code, CL.
sourcestringData source label (sodimac).
observedAtstringISO 8601 timestamp of when the record was collected.

Example output record

Real record from a live run (input {"keywords": ["taladro"], "maxProducts": 10}):

{
"productName": "Kit Taladro Perc.+ Atornillador 20v + 2 Bat Dck223d2",
"brand": "DEWALT",
"priceAmount": 319990,
"originalPrice": 349990,
"currency": "CLP",
"discountPct": 9,
"sku": "114087188",
"productId": "114087187",
"rating": 4.72,
"reviewCount": 75,
"availability": "InStock",
"seller": "TUS HERRAMIENTAS",
"isSponsored": true,
"isBestSeller": false,
"category": "Taladros",
"keyword": "taladro",
"productUrl": "https://www.sodimac.cl/sodimac-cl/articulo/114087187/Kit-Taladro-Perc.+-Atornillador-20v-+-2-Bat-Dewalt-Dck223d2?exp=so_com",
"imageUrl": "https://media.sodimac.cl/falabellaCL/114087188_01/public",
"country": "CL",
"source": "sodimac",
"observedAt": "2026-08-10T14:35:33.216Z"
}

Run via API and CLI

Start a run and wait for it to finish, then read the dataset. Replace <TOKEN> with your Apify API token.

Run synchronously and get dataset items in one call:

curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~sodimac-scraper/run-sync-get-dataset-items?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"keywords":["taladro"],"maxProducts":25}'

Start a run asynchronously:

curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~sodimac-scraper/runs?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"keywords":["pintura","https://www.sodimac.cl/sodimac-cl/lista/cat14080023/Taladros"],"maxProducts":100}'

Apify CLI:

apify call scrapers_lat/sodimac-scraper \
--input '{"keywords":["taladro"],"maxProducts":50}'

Fetch results

Every run writes to a dataset. Fetch items as JSON, CSV, or Excel by changing format:

# JSON
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=json"
# CSV
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=csv"
# Paginate large datasets
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&offset=1000&limit=1000"

<DATASET_ID> is returned as defaultDatasetId in the run object. Use offset and limit to page through large result sets. clean=true drops empty and internal fields.

Billing and limits

  • Pay per result. You are charged per product returned (result event). See the pricing tab for the current per-result price.
  • No charge on failure. If a run errors, it does not charge for failed output. Empty runs cost nothing.
  • Spend cap respected. Set maxTotalChargeUsd on the run; once reached, the actor stops emitting and charging further billable results.
  • Free Apify plans are capped at 10 products per run. Upgrade for higher maxProducts.

FAQ and troubleshooting

Can I scrape a whole category? Yes. Paste a full sodimac.cl category or search URL into keywords instead of a plain keyword. You can mix keywords and URLs in one run.

How is discountPct calculated? From priceAmount and originalPrice. When there is no crossed-out original price, originalPrice and discountPct are null.

How do I separate paid listings from organic ones? Filter on isSponsored. Sponsored placements are flagged true.

Why is rating or reviewCount null? The product has no published reviews yet. Missing source values are returned as null, never invented.

Is this an official Sodimac tool? No. This actor is independent and has no affiliation with Sodimac. It reads only publicly available product data from sodimac.cl. Use the results in accordance with the source's terms.

More scrapers at scrapers.lat

Built and maintained by scrapers.lat, where we publish scrapers for public platforms: company registries, government data, finance, e-commerce and more. Browse the catalog or request a custom scraper at scrapers.lat.


Independent tool, not affiliated with Sodimac. Accesses only publicly available product data from sodimac.cl. Use the results in accordance with the source's terms.