# Hering Product Scraper (`fullcirclescrapper/hering-scraper`) Actor

Extract products, prices, availability and sellers from www.hering.com.br

- **URL**: https://apify.com/fullcirclescrapper/hering-scraper.md
- **Developed by:** [Fernando Akio Pucci](https://apify.com/fullcirclescrapper) (community)
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Hering Product Scraper

### What does Hering Scraper do?

Hering Scraper extracts live product data from [www.hering.com.br](https://www.hering.com.br),
one of Brazil's leading fashion retailers. Give it a search keyword and
it returns structured, analysis-ready data:

- **Prices** — current price, list ("de/por") price and interest-free installment plans
- **Availability** — real-time in-stock status and the seller offering the product
- **Identity** — stable product ID, SKU, EAN barcode, brand, category and image

It reads Hering's public product catalog directly — no browser, no screenshots —
so runs are fast, cheap and stable.

### Why scrape Hering?

- **Price monitoring** — track competitor prices and promotions on a schedule.
- **Repricing** — feed your pricing engine with live Brazilian market data.
- **Market research** — assortment depth, brand mix and installment strategies.
- **Catalog enrichment** — match products by EAN and fill gaps in your data.

### How do I use Hering Scraper?

1. Click **Try for free** — the prefilled example works as-is.
2. Type a search keyword (Portuguese works best, e.g. `camiseta basica`).
3. Set **Max products** to control exactly how much you spend.
4. Run it, then download JSON/CSV/Excel or connect the API.

### How much will scraping Hering cost?

**$2.50 per 1,000 products.** That's it — no separate compute or
proxy fees. A typical price-monitoring run of 500 products costs about $1.25.

### ⬇️ Input

```json
{
  "search": "camiseta basica",
  "maxItems": 100
}
```

### ⬆️ Output (real example)

```json
{
  "source": "www.hering.com.br",
  "url": "https://www.hering.com.br/camiseta-basica-feminina-slim-world-0241hkmen/p",
  "product_id": "34322",
  "title": "Camiseta Básica Feminina Slim World - Caqui",
  "price": 44.99,
  "list_price": 69.99,
  "currency": "BRL",
  "available": true,
  "scraped_at": "2026-09-17T19:30:00+00:00",
  "brand": "Hering Adulto",
  "seller": "CIA. HERING",
  "category": "Camisetas/Manga Curta",
  "image_url": "https://hering.vteximg.com.br/arquivos/ids/6710630/0241-HKMEN-C1.jpg?v=639223324377800000",
  "installments": null,
  "ean": "7900290212387",
  "sku_id": "199609"
}
```

### Limitations & fair use

- A single search returns at most **~2,500 products** (a limit of Hering's
  own catalog API). Use more specific keywords to cover deep categories.
- `price` can be `null` for out-of-stock products; `list_price` is only set
  when the product is actually on sale.
- Prices belong to the store's default seller for each product.
- This Actor collects **public catalog data only** — no personal data, no
  logged-in areas, no reviews content.

### FAQ

#### Is it legal to scrape www.hering.com.br?

Scraping publicly available, non-personal data is generally legal. This Actor
collects only public product-catalog information (prices, titles, stock
status) — no personal data, in line with GDPR/LGPD. Review the target site's
terms and your local rules for your specific use case.

#### Can I run it on a schedule?

Yes — use Apify Schedules to run it hourly/daily and deliver results to
Google Sheets, S3, webhooks, Make or Zapier. It also works via the Apify API
and as a tool through Apify's MCP server for AI agents.

#### The store changed something and a field broke

This Actor is monitored daily by automated canary runs against the live
store, so breakages are usually fixed before you notice. If you spot an
issue, please report it in the **Issues tab** — it reaches us directly and
we ship fixes fast. Reviews can't notify us of technical problems.

### Your feedback

If this Actor saves you time, a review helps other users find it. For
anything broken or missing: Issues tab, and we'll get on it.

# Actor input Schema

## `search` (type: `string`):

Keyword to search on www.hering.com.br, e.g. 'camiseta basica'.

## `maxItems` (type: `integer`):

Stop after this many products (controls your cost).

## `proxyConfiguration` (type: `object`):

Datacenter proxy (default) is enough for this store; switch to RESIDENTIAL (country BR) only if you see blocks.

## Actor input object example

```json
{
  "search": "camiseta basica",
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `products` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "search": "camiseta basica"
};

// Run the Actor and wait for it to finish
const run = await client.actor("fullcirclescrapper/hering-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "search": "camiseta basica" }

# Run the Actor and wait for it to finish
run = client.actor("fullcirclescrapper/hering-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "search": "camiseta basica"
}' |
apify call fullcirclescrapper/hering-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,fullcirclescrapper/hering-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/4GnX21oEAI3iAXXTE/builds/CBnUlFCge0O0bVOzR/openapi.json
