Sodimac Chile Products, Prices & Discounts Scraper
Pricing
from $6.80 / 1,000 results
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
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
0
Monthly active users
7 days ago
Last modified
Categories
Share
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
Table of contents
- What it does
- Quickstart
- Input reference
- Output reference
- Example output record
- Run via API and CLI
- Fetch results
- Billing and limits
- FAQ and troubleshooting
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
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
keywords | string[] | 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. |
maxProducts | integer | no | 10 | Maximum 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.
| Field | Type | Description |
|---|---|---|
productName | string | Product title as listed. |
brand | string | Brand name. |
priceAmount | number | Current selling price, in the listed currency. |
originalPrice | number | Original (pre-discount) price, or null when there is no discount. |
currency | string | ISO currency code, normally CLP. |
discountPct | number | Discount percentage computed from priceAmount and originalPrice, or null. |
sku | string | Sodimac SKU of the specific variant. |
productId | string | Sodimac product identifier. |
rating | number | Average customer rating, or null. |
reviewCount | number | Number of customer reviews, or null. |
availability | string | Availability status, for example InStock. |
seller | string | Marketplace seller name. |
isSponsored | boolean | true when the listing is a sponsored/paid placement. |
isBestSeller | boolean | true when the listing carries a best-seller badge. |
category | string | Category the product was found in. |
keyword | string | The input keyword or URL that produced this result. |
productUrl | string | Public product page URL. |
imageUrl | string | Main product image URL. |
country | string | Market country code, CL. |
source | string | Data source label (sodimac). |
observedAt | string | ISO 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:
# JSONcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=json"# CSVcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=csv"# Paginate large datasetscurl "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 (
resultevent). 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
maxTotalChargeUsdon 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.
Related scrapers
- Falabella Products Scraper: Products, prices and discounts from Falabella.
- Exito Colombia Products Scraper: Products and prices from Exito.
- Chedraui Products Scraper: Products and prices from Chedraui Mexico.
- Elektra Products Scraper: Products and prices from Elektra Mexico.
- Dafiti Products Scraper: Fashion products and prices from Dafiti.
- Cruz Verde Products Scraper: Pharmacy products and prices from Cruz Verde.
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.
