Marketplace Product Scraper Bot (Ozon, Wildberries, Amazon)

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1 servicesAll 2065 services
Marketplace Product Scraper Bot (Ozon, Wildberries, Amazon)
Complex
~5 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Marketplace Product Scraper Bot

Marketplace scraping (Ozon, Wildberries, Amazon) — different class compared to regular supplier site parsing. Ozon and Wildberries actively counter-act scraping: Cloudflare protection, dynamic JS, browser fingerprinting, rate limiting. Each marketplace requires a separate strategy.

Legal APIs vs scraping

Before scraping, check official options:

Marketplace Official API Limitations
Ozon Seller API (for sellers) Own products only
Wildberries Seller API, Statistics API Own data only
Amazon Product Advertising API Partnership required

Scraping competitor products — gray zone. Used for competitive analysis, price monitoring, market research.

Wildberries: JSON API parsing

# scraper/wildberries.py
import httpx
import asyncio

class WildberriesScraper:
    CARD_URL = "https://card.wb.ru/cards/v2/detail"

    async def get_product(self, nm_id: int):
        params = {"appType": 1, "curr": "rub", "nm": nm_id}
        resp = await self.client.get(self.CARD_URL, params=params)
        data = resp.json()
        return self._normalize(data.get("data", {}).get("products", [])[0])

    async def search_products(self, query: str):
        params = {"appType": 1, "query": query}
        resp = await self.client.get(self.SEARCH_URL, params=params)
        products = resp.json().get("data", {}).get("products", [])
        return [self._normalize(p) for p in products]

Ozon: Playwright for SPA

# scraper/ozon.py
from playwright.async_api import async_playwright

class OzonScraper:
    async def scrape_product(self, url: str):
        async with async_playwright() as p:
            browser = await p.chromium.launch(headless=True)
            page = await browser.new_page()

            product_data = {}

            async def handle_response(response):
                if "/api/entrypoint-api.bx/page/json" in response.url:
                    data = await response.json()
                    widget_states = data.get("widgetStates", {})
                    for key, value in widget_states.items():
                        if "webProductHeading" in key:
                            product_data["heading"] = json.loads(value)

            page.on("response", handle_response)
            await page.goto(url, wait_until="networkidle")
            await browser.close()

            return self._normalize_ozon(product_data)

Amazon via official API

For Amazon, use Product Advertising API 5.0:

# scraper/amazon_pa.py
from paapi5_python_sdk import DefaultApi, SearchItemsRequest

class AmazonScraper:
    def search_products(self, keywords: str):
        request = SearchItemsRequest(
            partner_tag=self.partner_tag,
            keywords=keywords,
            resources=["ItemInfo.Title", "Offers.Listings.Price"],
        )
        response = self.api.search_items(request)
        return [self._normalize(item) for item in response.search_result.items]

Development timeline

Marketplace Complexity Timeline
Wildberries (JSON API) Medium 3-5 days
Ozon (Playwright) High 5-8 days
Amazon (PA API) Low 2-3 days

Marketplace scraper with monitoring and alerts — 5-8 business days for 3-5 competitors.