Ozon Search Scraper — Prices, Ratings & Reviews avatar

Ozon Search Scraper — Prices, Ratings & Reviews

Pricing

from $2.13 / 1,000 results

Go to Apify Store
Ozon Search Scraper — Prices, Ratings & Reviews

Ozon Search Scraper — Prices, Ratings & Reviews

Search Ozon, Russia's largest marketplace, for any product or brand. Every product returns its price, any discount, star rating and review count as numbers. Switch on enrichment and each one also carries the seller, the price paid without an Ozon card, the full spec table and every image.

Pricing

from $2.13 / 1,000 results

Rating

0.0

(0)

Developer

The Netaji

The Netaji

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Ozon Search Scraper

The Actor searches Ozon, Russia's largest marketplace, for a product name or brand and returns the matching products as structured rows: sku, title, url, image_url, price, original_price, currency, on_sale, percent_discount, rating, review_count and is_adult.

Prices and ratings arrive as numbers. Ozon renders them for a Russian storefront — 194 632 ₽, with a no-break space between the thousands and a currency glyph rather than a code — and those strings are parsed before they reach the dataset, so price is 194632 and currency is RUB.

Accepted input

keyword is required and is the product name or brand to search for. maxItems caps how many products are saved and defaults to 100; setting it to 0 removes the cap and lets the run continue to the end of the listing.

{
"keyword": "iphone",
"maxItems": 24
}

Response fields

{
"sku": 3755501937,
"title": "Apple Смартфон iPhone 17 Pro Max Global 12/1 ТБ, темно-синий",
"url": "https://www.ozon.ru/product/apple-smartfon-iphone-17-pro-max-3755501937/",
"image_url": "https://ir.ozone.ru/s3/multimedia-1-4/8542532020.jpg",
"price": 194632,
"original_price": 1083750,
"currency": "RUB",
"on_sale": true,
"percent_discount": 82,
"rating": 4.7,
"review_count": 128,
"is_adult": false
}

Fields absent from the listing are returned as null rather than omitted, so every row has the same shape. A product with no rating yet returns rating: null and review_count: null; a product that is not discounted returns original_price: null, percent_discount: null and on_sale: false.

sku is Ozon's own product identifier and is the stable key for a product. url has Ozon's per-response tracking token removed, so the same product produces the same link on every run and can be de-duplicated across runs by either field.

Ozon does not answer a search with a result set. It picks the category that best matches the words and serves that category's listing — so a search for iphone resolves to the Apple smartphones category, and the products returned are that category's, ordered as Ozon orders them.

The resolved category is printed in the run log. Pasting it into Ozon Category Scraper skips the resolution step on later runs and goes straight to the listing, which is the cheaper way to take the same products repeatedly.

Questions

Why did the run return fewer products than maxItems? Because the listing ran out. Ozon serves the grid in pages of eight and the Actor keeps requesting pages until the listing reports no more, so a narrow keyword resolves to a small category and stops there. The ceiling is 300 pages, or 2,400 products, and a category larger than that is truncated at the ceiling rather than continuing.

Are the products the same as searching on ozon.ru? They are the listing Ozon resolves the keyword to, in Ozon's own order. Sponsored placements and the banners, filter rails and menus that surround the grid on the website are not products and are not returned.

Why do two runs on the same keyword differ slightly? Ozon re-composes the grid per request and neighbouring pages sometimes overlap, repeating a handful of products. Duplicates are removed within a run by product URL, but Ozon's own ordering and stock change between runs, so consecutive runs are close rather than identical.

What happens when a run is interrupted upstream? Ozon challenges a minority of new sessions. A challenged request is retried on a fresh session, and a run that still cannot get past it ends with the products it has already collected rather than failing outright — the dataset is short, not empty.

Why is price lower than the price Ozon shows me? It is not — it is the price Ozon shows by default, which assumes payment with an Ozon card. The standard price is higher and appears only on a product's own page, so it is available as list_price when enrichment is on. Comparing the two is the point of having both.

Is the Actor limited to roubles? The prices come from ozon.ru and are quoted in roubles, so currency is RUB. The currency is read from the symbol Ozon displayed rather than assumed, so a storefront quoting tenge or dram is reported as such rather than silently mislabelled.

Enriching with product details

enrichProductDetails opens each product's own page and merges what a listing cannot show onto its row. It is off by default, costs one extra request per product, and is billed per product enriched — only after the lookup succeeds.

Eleven fields are added: seller_name, seller_url, seller_id, list_price, brand, description, in_stock, images, characteristics, category_path and variants.

The seller is the reason most runs turn it on. Ozon is a marketplace, several shops sell the same product, and a listing tile names none of them — so a listing export alone cannot answer who is selling what.

list_price is the other reason, and it is easy to miss. Ozon quotes two live prices: the discounted price for paying with an Ozon card, and the standard price everyone else pays. Search and category listings show only the first, so price on an unenriched row understates what most buyers are charged. list_price is the standard price, and price is left untouched so the two can be compared rather than one silently replacing the other.

rating and review_count are taken from the product page when it has them. A listing tile rounds the review count and frequently omits it, so the product page is the better source for the same two fields.

A product whose page cannot be reached, or that has been delisted, keeps its listing row unchanged and is not billed for the enrichment.

Ozon Category Scraper takes a category link directly and exports the whole listing. It is the better choice once the category is known, because every request buys products instead of spending one working out where to look.