Rozetka Parser avatar

Rozetka Parser

Pricing

Pay per usage

Go to Apify Store
Rozetka Parser

Rozetka Parser

Pricing

Pay per usage

Rating

0.0

(0)

Developer

9839_ser

9839_ser

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

Rozetka Scraper

Extract product data from Rozetka — Ukraine's largest online marketplace. Give it search, category or product URLs and get clean, structured product data: titles, brands, prices (UAH and USD), availability, ratings, reviews, sellers and images.

The scraper uses Rozetka's own data API, so it's fast and reliable, and results are ready to export to JSON, CSV, Excel or push to your own systems.

What it can do

  • Search queries — just type words (e.g. iphone 15); the Actor builds the search itself
  • Category URLs — scrape a whole category, e.g. mobile phones
  • Product URLs — scrape specific products

You can combine all three in a single run.

Input

FieldDescription
Search queriesPlain search terms, e.g. iphone. The Actor builds the Rozetka search for each.
Category URLsRozetka category URLs, e.g. https://rozetka.com.ua/ua/mobile-phones/c80003/.
Product URLsRozetka product URLs, e.g. https://rozetka.com.ua/.../p107969682/.
Data to collectFull (info + prices), Product info only, or Prices only.
Category fast modeFor category URLs, collect data straight from the listing — faster and cheaper, but without brand/seller names, rating or breadcrumbs.
Max itemsStop after this many products (0 = unlimited).
Max concurrencyMaximum number of parallel requests. Higher is faster; lower it if you hit blocks.
ProxyProxy configuration. Recommended for large runs.

Provide at least one of Search queries, Category URLs or Product URLs.

Example input

{
"searchQueries": ["iphone 15", "samsung galaxy"],
"categoryUrls": [
{ "url": "https://rozetka.com.ua/ua/mobile-phones/c80003/" }
],
"productUrls": [
{ "url": "https://rozetka.com.ua/ua/apple-iphone-15-128gb-black/p395460480/" }
],
"dataType": "full",
"maxItems": 100
}

Output

Each product is one dataset record:

{
"id": 395460480,
"url": "https://rozetka.com.ua/ua/apple-iphone-15-128gb-black/p395460480/",
"title": "Мобільний телефон Apple iPhone 15 128GB Black (MTP03RX/A)",
"brand": "Apple",
"price": 30999,
"old_price": 36299,
"currency": "UAH",
"usd_price": 688.87,
"availability": "available",
"seller": "Rozetka",
"rating": 4.7,
"reviews_count": 191,
"images": ["https://content.rozetka.com.ua/goods/images/original/364623521.jpg"]
}
FieldDescription
idRozetka product id
urlProduct page URL
titleProduct title
brandBrand name
price / old_priceCurrent and previous price (UAH)
currencyAlways UAH
usd_pricePrice in USD
availabilityStock status
sellerSeller name
ratingAverage rating
reviews_countNumber of reviews
imagesProduct image URLs

When Data to collect is Prices only, records contain just the pricing fields (id, price, old_price, currency, usd_price, availability).