Plazavea Peru Price Scraper avatar

Plazavea Peru Price Scraper

Pricing

from $0.40 / 1,000 results

Go to Apify Store
Plazavea Peru Price Scraper

Plazavea Peru Price Scraper

Product price search on PlazaVea, a leading Peruvian supermarket. Search by keyword and get structured records: name, brand, price, list price, stock, unit data, price-per-kg and URLs.

Pricing

from $0.40 / 1,000 results

Rating

0.0

(0)

Developer

Philip Kirkbride

Philip Kirkbride

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Categories

Share

Plazavea Peru — product search & price scraper

Search PlazaVea Peru's online supermarket and get structured product prices in PEN — names, brands, per-kilo prices, stock levels and product URLs, every run.

🇵🇪 Peru · storefront: www.plazavea.com.pe · prices in PEN (PE)

Every run returns normalized product records — name, brand, current and list price in PEN, per-kilogram price, stock level, product and image URLs — ready for datasets, spreadsheets or dashboards. Fast, structured results: no manual copy-paste.

Use cases

  • Grocery price monitoring — staples and household goods across PlazaVea's catalog.
  • Cross-banner comparison — PlazaVea uses a different product-ID space than Cencosud chains; pair with name normalization for full-market Lima coverage.
  • Promo trackingprice vs listPrice plus stock fields flag real discounts.
  • Assortment feeds — structured brand/size/URL fields for catalogs and dashboards.

What it returns

  • productKey — stable unique product ID for this store; join and dedupe on this, never the bare id
  • name / brand — product display name and brand
  • price / listPrice / currency — current and list price; the currency for this store is always PEN
  • unitMultiplier / measurementUnit — pack size (a 5 kg bag → multiplier 5, unit kg)
  • pricePerKg — normalized per-kilogram price when the weight is known, null otherwise
  • availableQuantity / inStock — stock count (99999 means effectively unlimited) and availability flag
  • url / imageUrl — product page and product image
  • store / searchQuery / categoryResolved — run provenance: store slug, the query used, and whether the optional category filter resolved

Input

  • search — free-text product search, e.g. arroz; defaults to a starter search when omitted
  • category — optional; free-text category to scope the search against the store's own category tree (e.g. huevos)
  • maxPages — 1–5 result pages (default 1; 24 products per page)
  • maxResults — cap on returned products (default 50, max 200)
  • requestDelaySecs — politeness delay between result pages (default 1.0 s)

This record always searches www.plazavea.com.pe — no store selection is needed (or offered); every record of this family is fixed to one storefront.

Example queries

{"store": "plazavea", "search": "arroz", "maxResults": 10} {"store": "plazavea", "search": "aceite vegetal", "maxResults": 5} {"store": "plazavea", "search": "huevos", "maxResults": 10} {"store": "plazavea", "search": "detergente", "maxResults": 20}

Output example

[
{
"productKey": "plazavea.com.pe:34075",
"name": "Arroz Extra 5 kg",
"brand": "Marca Blanca",
"price": 26.9,
"listPrice": 29.9,
"currency": "PEN",
"unitMultiplier": 5,
"measurementUnit": "kg",
"availableQuantity": 147,
"pricePerKg": 5.38,
"inStock": true,
"url": "https://www.plazavea.com.pe/arroz-extra-5kg/p",
"imageUrl": "https://www.plazavea.com.pe/arquivos/ids/34075/arroz-extra.jpg",
"store": "plazavea",
"searchQuery": "arroz",
"categoryResolved": true
}
]

Quirks

  1. PlazaVea's product-ID space is independent of Metro/Wong — match across chains by normalized name, not ID.
  2. Unresolved category names degrade gracefully to plain search (categoryResolved: false).
  3. Watch unitMultiplier on multi-packs; per-kg math is already provided as pricePerKg.