Paris.cl Chile Product Price & CMR Price Scraper
Pricing
from $6.80 / 1,000 results
Paris.cl Chile Product Price & CMR Price Scraper
Scrape Paris.cl, Chile's major department store, for products by keyword or category URL. Get product name, brand, price, CMR (Cencosud card) price, original price, discount, SKU, rating, review count, seller and marketplace flag, category and image. 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
2
Total users
1
Monthly active users
13 days ago
Last modified
Categories
Share
Paris.cl Chile Product Price & CMR Price Scraper
Here is one real result, with every field the actor returns:
{"productName": "Notebook Gamer Omen Intel Core i7 16GB RAM 1TB SSD RTX 5060 16' 240Hz League of Legends Ed Limitada","brand": "HP","priceAmount": 1499990,"cmrPrice": 1449990,"originalPrice": 1999990,"currency": "CLP","discountPct": 25,"sku": "351432999","productId": "351432999","rating": 4,"reviewCount": 5,"availability": "InStock","category": "tecCompNotebooks","departmentId": "741","sellerName": "Paris","isMarketplace": false,"productUrl": "https://www.paris.cl/notebook-gamer-omen-intel-core-i7-16gb-ram-1tb-ssd-rtx-5060-16-240hz-league-of-legends-ed-limitada-351432999.html","imageUrl": "https://cl-dam-resizer.ecomm.cencosud.com/unsafe/adaptive-fit-in/792x1068/cl/paris/351432999/variant/693ad34b3ed4a04590d01633/images/5519b3cc-6936-44d5-9d47-ba5a2ebe1c1d/351432999-0000-001.jpg","searchInput": "notebook","source": "paris.cl","observedAt": "2026-08-10T14:34:52.128Z"}
The most complete Paris.cl product scraper available. It returns every price and catalog field the Chilean retailer exposes for each product, including the regular price, the discounted CMR card price, the original list price, and a computed discount percentage, plus rating, availability, seller, and marketplace flags, so you can track prices and offers by keyword or category.
📥 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 takes one or more search terms or Paris.cl category URLs, paginates through the matching products, and writes one normalized record per product to the run's dataset. Each record carries the regular price, the CMR card price, the original list price, a computed discount percentage, plus brand, SKU, rating, availability, seller, category, image, and product URL. Each keyword or category URL is scraped independently. Missing source values are returned as null, never invented.
Quickstart
Open the actor, paste this into the input, and press Run. It returns 10 notebook products.
{"keywords": ["notebook"],"maxProducts": 10}
Pass multiple search terms, or full Paris.cl category URLs such as https://www.paris.cl/tecnologia/computadores-tablet/notebooks/, in the keywords array. Each is scraped independently up to the shared maxProducts cap.
Input reference
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
keywords | string[] | no | ["notebook"] | One or more search terms (for example zapatillas nike) or full Paris.cl category URLs. Each item is scraped independently. |
maxProducts | integer | no | 10 | Maximum products to collect across all keywords / category URLs. |
Output reference
One dataset item per product. Types: string, number, boolean, or null when the source value is absent.
| Field | Type | Description |
|---|---|---|
productName | string | Full product name. |
brand | string | Brand name. |
priceAmount | number | Current selling price in CLP. |
cmrPrice | number | Discounted price with the CMR card, if offered. |
originalPrice | number | Original list price before discount. |
currency | string | Currency code. Always CLP. |
discountPct | number | Computed discount percentage off the original price. |
sku | string | Product SKU. |
productId | string | Paris.cl product identifier. |
rating | number | Average customer rating, if present. |
reviewCount | integer | Number of reviews, if present. |
availability | string | Stock status, for example InStock. |
category | string | Internal Paris.cl category code. |
departmentId | string | Department identifier. |
sellerName | string | Seller name, for example Paris. |
isMarketplace | boolean | true when sold by a third-party marketplace seller. |
productUrl | string | Canonical product page URL. |
imageUrl | string | Main product image URL. |
searchInput | string | The keyword or category URL this product was found under. |
source | string | Data source. Always paris.cl. |
observedAt | string | ISO 8601 timestamp of when the record was collected. |
Example output record
Real record from a live run (input {"keywords": ["notebook"], "maxProducts": 10}):
{"productName": "Notebook Vivobook 16 X1605 Intel Core i9 16GB RAM 512GB SSD 16'' WUXGA 60Hz","brand": "Asus","priceAmount": 759990,"cmrPrice": 729990,"originalPrice": 1249990,"currency": "CLP","discountPct": 39.2,"sku": "527294999","productId": "527294999","rating": 4.2,"reviewCount": 20,"availability": "InStock","category": "tecCompNotebooks","departmentId": "741","sellerName": "Paris","isMarketplace": false,"productUrl": "https://www.paris.cl/notebook-vivobook-16-x1605-intel-core-i9-16gb-ram-512gb-ssd-16-wuxga-60hz-527294999.html","imageUrl": "https://cl-dam-resizer.ecomm.cencosud.com/unsafe/adaptive-fit-in/792x1068/cl/paris/527294999/variant/6978e3cb6ad07355e238a5de/images/50c781b9-59b3-4b60-8da0-b9b3897ae0c7/527294999-0000-001.jpg","searchInput": "notebook","source": "paris.cl","observedAt": "2026-08-10T14:34:52.128Z"}
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~paris-chile-scraper/run-sync-get-dataset-items?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"keywords":["notebook"],"maxProducts":25}'
Start a run asynchronously:
curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~paris-chile-scraper/runs?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"keywords":["zapatillas nike","https://www.paris.cl/tecnologia/computadores-tablet/notebooks/"],"maxProducts":100}'
Apify CLI:
apify call scrapers_lat/paris-chile-scraper \--input '{"keywords":["notebook"]}'
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. 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
A run returned 0 records. Why? The keyword matched no products, or the category URL is invalid. Try a broader term or a valid Paris.cl category URL. Zero-result runs are not charged.
What is the difference between priceAmount and cmrPrice?
priceAmount is the regular selling price. cmrPrice is the lower price offered to holders of the CMR store card, when the product has that offer.
Can I scrape a whole category?
Yes. Put a full Paris.cl category URL in keywords. You can mix search terms and category URLs in the same run.
How is discountPct calculated?
It is the percentage off the original list price (originalPrice) versus the current price, as computed from the product data.
How do I know if a product ships from a third-party seller?
Check isMarketplace. When true, the product is sold by a marketplace seller rather than Paris directly (sellerName).
Is this an official Paris tool? No. This actor is independent and reads only publicly available product listing data. Use the results in accordance with the source's terms and applicable laws.
Related scrapers
- Falabella Scraper: Falabella product prices and catalog.
- Chedraui Scraper: Chedraui product prices.
- Copart Scraper: Copart vehicle auction listings.
- Chileautos Scraper: Chilean used-car listings.
More scrapers at scrapers.lat
Built and maintained by scrapers.lat, where we publish scrapers for US and Latin American 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 Paris or Cencosud. Accesses only publicly available product listing data. Use the results in accordance with the source's terms and applicable laws.
