Ozon Product Data Extractor — Ozon Scraper
Extract product data from Ozon — a major Russian e-commerce marketplace. Get prices, reviews, ratings, seller information, and product specifications.
What This Tool Does
The Ozon Data Extractor extracts product data from Ozon, Russia's second-largest online marketplace. It supports two modes: keyword search to retrieve a list of products matching a query, and product URL mode to extract the full details of specific product pages.
Both modes return structured JSON with pricing, ratings, seller information, and product specifications — ready for analysis, price monitoring, or integration into your data pipeline.
Two Input Modes
Keyword Search
Pass a search query and get back a list of matching products (up to 50 results per request).
Product URL
Pass one or more Ozon product URLs to get detailed data for those specific listings.
Use Cases
- Price monitoring — Track price changes across product categories or specific listings over time.
- Market research — Analyse which products rank highly for target search queries and why.
- Competitor analysis — Monitor competitor pricing strategies, ratings, and review counts at scale.
- Assortment tracking — Identify gaps in a category by examining available products, brands, and price ranges.
- Dropshipping & sourcing — Find high-demand, well-rated products to source or resell.
Data Fields
| Field | Type | Description |
|---|---|---|
| title | string | Full product name as listed on Ozon |
| price | number | Current selling price in RUB |
| originalPrice | number | Original price before discount in RUB |
| rating | number | Average customer rating (0–5 scale) |
| reviewCount | number | Total number of customer reviews |
| seller | string | Name of the seller or brand |
| url | string | Direct link to the Ozon product page |
| image | string | Main product image URL |
| description | string | Full product description text |
| specifications | object | Key-value map of product attributes (e.g. colour, material, dimensions) |
| availability | string | In-stock status |
| category | string | Product category path |
Example Request (keyword search)
{
"searchQuery": "наушники bluetooth",
"maxResults": 10
}
Example Request (product URLs)
{
"productUrls": [
"https://www.ozon.ru/product/besprovodnye-naushniki-jbl-tune-520bt-siniy-733285608/"
]
}
Example Response
{
"title": "Беспроводные наушники JBL Tune 520BT, синий",
"price": 3490,
"originalPrice": 4990,
"rating": 4.7,
"reviewCount": 8432,
"seller": "JBL Official",
"url": "https://www.ozon.ru/product/733285608/",
"image": "https://cdn1.ozone.ru/s3/multimedia-j/6660938443.jpg",
"description": "Беспроводные наушники с технологией Bluetooth 5.3, временем работы до 57 часов и поддержкой голосового ассистента.",
"specifications": {
"Тип подключения": "Bluetooth",
"Версия Bluetooth": "5.3",
"Время работы": "57 ч",
"Цвет": "Синий"
},
"availability": "В наличии",
"category": "Электроника / Наушники и аудиотехника"
}
Limits and Tips
- Russian-language search queries return the most relevant results — Ozon is a Russian-language marketplace.
- Maximum 50 results per keyword search request. Use
maxResultsto limit cost. - Product URLs must be from
ozon.ru— other Ozon domains are not supported. - Processing takes 30–90 seconds depending on the number of products and current Ozon load.
- Results are cached for up to 15 minutes. Re-running the same request may return cached data.
- Prices reflect the state at the time of the request and may change between runs.
On this page