Oscaro Product Scraper avatar

Oscaro Product Scraper

Pricing

from $5.70 / 1,000 overview products

Go to Apify Store
Oscaro Product Scraper

Oscaro Product Scraper

Scrape Oscaro car parts — prices (EUR), brands, references, EAN, TecDoc specs, cross-references & images. Search by part name or OE reference, no vehicle selection. Clean JSON/CSV, no code.

Pricing

from $5.70 / 1,000 overview products

Rating

0.0

(0)

Developer

SIÁN OÜ

SIÁN OÜ

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Oscaro Product Scraper — Prices (EUR), References & Specs 🔧

SIÁN Agency Store AutoZone Product Scraper Advance Auto Parts Scraper Google Shopping Price Tracker

🎉 Pull Oscaro car-parts prices, references, specs & cross-references — by part name or OE reference, no code

Built for parts resellers, garages, price analysts, and data teams who need fresh Oscaro product data on demand


📋 Overview

Track every car-parts price, promotion, and specification on Oscaro — without writing a single line of code, and without selecting a vehicle. This scraper turns any Oscaro search — a part name or an OE/manufacturer reference — into a clean, structured spreadsheet of products complete with prices in EUR, brands, EAN barcodes, full TecDoc specifications, and equivalent (cross-reference) parts.

Why professionals choose us:

  • Complete parts data: 30+ fields per product — price (EUR), public price, promotions, brand, reference, EAN, category, images, availability and more
  • 🔎 Search without a vehicle: type a part name (plaquette de frein) or a reference (GDB1330) — no make/model/year selection needed
  • Fast search-first mode: pull 100 products per page in seconds; scale to thousands across multiple searches
  • 🔁 Cross-references built in: every product lists its equivalent (OE/aftermarket) references for matching across catalogs
  • 💎 Detail enrichment: switch on the full TecDoc specifications table and the complete cross-reference list
  • 💰 Pay only for results: charged per product you actually receive — free tier to test

✨ Features

  • 🔎 Part-name & Reference Search: search by a French part name or by any OE/manufacturer reference
  • 🏷️ Full Pricing (EUR): current price, pre-promo price, manufacturer public price (RRP), core deposit, VAT rate, promotion flag and percentage
  • ™️ Brand & Identifiers: manufacturer, reference, normalized reference, EAN/barcode and brand logo
  • 📋 TecDoc Specifications: full structured spec table (Detail mode) — dimensions, material, technical attributes and more
  • 🔁 Cross-references: equivalent OE/aftermarket references grouped by manufacturer
  • 🗂️ Categories: top-level category and sub-category for clean classification
  • 🚗 Fitment Insight: a count of how many vehicle types each part fits, plus a universal-fit flag
  • 🖼️ Product Images: product image URLs, ready for catalogs or feeds
  • 🧰 Native Filters: filter by brand, part type, in-stock, on-promotion or universal-fit
  • 📦 Clean Export: results delivered as structured JSON or CSV, ready for Excel or your database
  • 🚀 No-Code Setup: configure searches in a simple form — no scripts, no maintenance

🎬 Quick Start

Enter one or more search terms, pick a mode, and run. In under a minute you'll have a structured dataset of Oscaro products you can download as JSON or CSV. No setup, no code.

curl -X POST https://api.apify.com/v2/acts/sian.agency~oscaro-product-scraper/runs?token=YOUR_TOKEN \
-H 'Content-Type: application/json' \
-d '{"queries": ["plaquette de frein"], "scrapeMode": "overview"}'

🚀 Getting Started (3 Simple Steps)

Step 1: Add Your Searches

Type one or more search terms — a part name (disque de frein, filtre à huile, amortisseur) or an OE/manufacturer reference (GDB1330, 0986494027) — one per line.

Step 2: Choose Your Mode

Pick Overview for fast search results, or Detail to also pull the full TecDoc specifications table and every cross-reference.

Step 3: Run & Download

Click Start, then export your results as JSON, CSV, or Excel from the Apify dataset.


📥 Input Configuration

FieldTypeDescription
queriesarrayPart names or OE/manufacturer references. One per line. e.g. plaquette de frein, GDB1330
scrapeModeenumoverview (fast) or detail (full specs + all cross-references)
brandstringOptional — restrict to one manufacturer (e.g. BOSCH, VALEO, BREMBO)
genartIdstringOptional (advanced) — restrict to one TecDoc part-type id
availablebooleanOptional — only in-stock products
promobooleanOptional — only products on promotion
universalbooleanOptional — only universal-fit parts
maxResultsintegerMaximum products across all searches (FREE: 25 · PAID: unlimited)

Example input:

{
"queries": ["plaquette de frein", "disque de frein"],
"scrapeMode": "detail",
"brand": "BOSCH",
"available": true,
"maxResults": 200
}

📤 Output

Each product is one clean record. Example (overview):

{
"item_id": "1780903",
"productTitle": "Jeu de 4 plaquettes de frein",
"brand": "BOSCH",
"reference": "0 986 494 027",
"ean": "4047024044036",
"price": 22.9,
"public_price": 74.89,
"currency": "EUR",
"available": true,
"category": "Freinage",
"sub_category": "Plaquettes de frein",
"url": "https://www.oscaro.com/jeu-de-4-plaquettes-de-frein-bosch-0-986-494-027-1780903-402-p",
"images": ["https://oscaro.media/oscjpg/normal/30/0986494027_1.jpg"],
"equivalent_references": [{ "manufacturer": "TRUSTING", "references": ["3360"] }]
}

In Detail mode each record additionally carries the full TecDoc specs table, every equivalent_references entry, and vehicle_type_count.


💼 Use Cases & Examples

1. Price Monitoring

Track Oscaro prices, public prices and promotions across the parts you sell — in EUR, with VAT rate.

2. Cross-reference (OE) Lookup

Resolve an OE or manufacturer reference to every equivalent aftermarket part and its price.

3. Catalog Building

Build a clean parts catalog with brand, reference, EAN, category and images — ready for a feed.

4. Competitive Analysis

Compare Oscaro pricing and assortment by brand or part type against your own catalog.

5. Availability Research

Filter to in-stock parts and monitor what is available across a category.

6. Market Research

Survey which brands and part types dominate a category, and at what price points.


🔗 Integration Examples

JavaScript/Node.js

const res = await fetch('https://api.apify.com/v2/acts/sian.agency~oscaro-product-scraper/runs?token=YOUR_TOKEN', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ queries: ['plaquette de frein'], scrapeMode: 'overview' }),
});

Python

import requests
requests.post(
'https://api.apify.com/v2/acts/sian.agency~oscaro-product-scraper/runs?token=YOUR_TOKEN',
json={'queries': ['GDB1330'], 'scrapeMode': 'detail'},
)

Automation Workflows (n8n / Zapier / Make)

Trigger the actor on a schedule and pipe the dataset into Sheets, Airtable, or your database.


📊 Performance & Pricing

This actor uses pay-per-event pricing — you pay for the products you receive, plus a small per-run base fee.

FREE Tier (Try It Now)

  • Up to 25 products per run
  • Both Overview and Detail modes
  • Full output fields
  • Unlimited products per run
  • Sweep whole categories in a single run
  • Volume discounts at higher plan tiers

The primary Overview event is the cheap, high-volume row; Detail is the premium row that adds the full specification table and every cross-reference.


❓ Frequently Asked Questions

Do I have to select a vehicle? No. Search works directly by part name or reference — no make/model/year is required.

Can I search by an OE or manufacturer reference? Yes — paste the reference (e.g. GDB1330 or 0986494027) as a query and you'll get the matching parts plus their cross-references.

What currency are prices in? Euros (EUR), as shown on Oscaro's French store.

What's the difference between Overview and Detail? Overview returns price, brand, reference, EAN, category, images, availability and the top cross-references. Detail adds the complete TecDoc specification table and every equivalent reference.

Which export formats are supported? JSON, CSV, and Excel from the Apify dataset.


🐞 Troubleshooting

  • No results for a term — try the French part name (e.g. plaquette de frein rather than brake pads) or a precise reference.
  • Too many results — add a brand or genartId filter, or lower maxResults.
  • Want specs — switch scrapeMode to detail.

Our actors are ethical and do not extract any private user data, such as email addresses, gender, or location. They only extract what is publicly shared. We therefore believe that our actors, when used for ethical purposes by Apify users, are safe.

However, you should be aware that your results could contain personal data. Personal data is protected by the GDPR in the European Union and by other regulations around the world. You should not scrape personal data unless you have a legitimate reason to do so. If you're unsure whether your reason is legitimate, consult your lawyers.

You can also read Apify's blog post on the legality of web scraping.


⚖️ Trademark Disclaimer

Oscaro® is a trademark of Oscaro.com. This actor is an independent tool and is not affiliated with, endorsed by, or sponsored by Oscaro.com. Brand names (e.g. BOSCH, VALEO, BREMBO) are trademarks of their respective owners and are used only to identify the parts they manufacture.


⭐ Love This Tool?

If this actor saves you time, please leave us a 5-star review — it helps other professionals discover it and helps us keep improving.


🤝 Support

Telegram Support

Join our active support community

More from SIÁN Agency


Built by SIÁN Agency | More Tools