Torob Product Sellers Scraper avatar

Torob Product Sellers Scraper

Pricing

Pay per usage

Go to Apify Store
Torob Product Sellers Scraper

Torob Product Sellers Scraper

Given a Torob product page URL, returns the full list of sellers and their prices.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Armin MHF

Armin MHF

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

2 days ago

Last modified

Categories

Share

Extract the full list of sellers and their prices from any product page on torob.com — Iran's largest price-comparison search engine. Give it a product URL, get back a clean dataset where every row is one seller with their price, availability, and a buy link.

What does Torob Product Sellers Scraper do?

This actor takes a single Torob product page URL and returns the complete list of merchants offering that product, along with each seller's price in both Toman and Rial, stock availability, and the buy/redirect link Torob uses for that listing.

It parses Torob's structured Product JSON-LD block (the same data Google uses to render rich snippets), which makes the extraction fast, robust, and resilient to frontend redesigns. Behind the scenes it uses Crawlee's CheerioCrawler, so there's no headless browser overhead — typical runs finish in 1–2 seconds.

Run it on demand, schedule it on the Apify platform, or call it via the Apify API to monitor a product's price across all sellers automatically.

Why use this actor?

  • Price intelligence — track competitor pricing for a SKU across 30+ Iranian online stores at once.
  • Stock monitoring — see who currently has the product InStock and who doesn't.
  • Deal hunting — find the cheapest seller programmatically (the dataset includes lowPriceRial and highPriceRial per product so you can spot outliers in one shot).
  • Affiliate/comparison sites — pull a fresh seller list whenever your own product page is viewed.

How to use Torob Product Sellers Scraper

  1. Open the actor's Input tab.
  2. Paste a Torob product page URL — anything that looks like https://torob.com/p/<uuid>/<slug>/.
  3. (Optional) Toggle Apify Proxy if you want the request routed through Apify's proxy network.
  4. Click Start.
  5. When the run finishes, open the Storage → Dataset tab. Each row is one seller. Download as JSON, CSV, Excel, or HTML.

Input

The input is a single Torob product URL.

{
"url": "https://torob.com/p/16080a39-171a-4b75-8b76-fcd95e26983e/"
}
FieldTypeRequiredDescription
urlstringyesTorob product page URL
proxyConfigurationobjectnoApify Proxy configuration (default: off)

Output

The actor pushes one item per seller to the default dataset. You can download the dataset in various formats such as JSON, HTML, CSV, or Excel.

Example item:

{
"productName": "اره زنجیری بنزینی هیوندای مدل TECHNO745 تیغه ۴۵ سانت",
"productUrl": "https://torob.com/p/16080a39-171a-4b75-8b76-fcd95e26983e/...",
"productSku": "16080a39-171a-4b75-8b76-fcd95e26983e",
"brand": "هیوندای",
"image": "https://image.torob.com/.../560x560.webp",
"sellerName": "ادوات صنعتی کشاورزی حداد",
"priceRial": 190000000,
"priceToman": 19000000,
"priceCurrency": "IRR",
"availability": "InStock",
"sellerLinkUrl": "https://api.torob.com/v4/product-page/redirect/?...",
"priceValidUntil": "2026-6-19",
"lowPriceRial": 190000000,
"highPriceRial": 260000000,
"offerCount": 30
}

Data fields

FieldDescription
productNamePersian product title as shown on Torob
productUrlCanonical product URL
productSkuTorob's internal product UUID
brandBrand name
imageMain product image URL
sellerNameThe merchant name
priceRialPrice in Iranian Rial (the unit Torob uses internally)
priceTomanSame price converted to Toman (priceRial / 10) — what shoppers usually compare
priceCurrencyAlways IRR
availabilityInStock, OutOfStock, … (with the schema.org/ prefix stripped)
sellerLinkUrlThe Torob redirect link that takes you to the seller's product page
priceValidUntilDate until which Torob claims the price is valid
lowPriceRialCheapest price among all sellers for this product (denormalized for convenience)
highPriceRialHighest price among all sellers
offerCountTotal number of seller offers reported by Torob

Cost estimation

This actor is extremely cheap to run because it only does one HTTP request per Torob product and parses static HTML (no browser). Expect a single run to finish in 1–2 seconds and consume a tiny fraction of a Compute Unit. The Apify free tier covers thousands of runs per month.

Tips & advanced options

  • Schedule it to monitor a product's price daily and feed the dataset into a BI tool.
  • Chain it with another actor (or your own code) that supplies a list of product URLs — call this actor once per URL.
  • If a particular run is empty, check that the URL still resolves to a Torob product page and not to a search/category page; this actor expects the per-product page (/p/<uuid>/...).

FAQ, disclaimers & support

  • Is it legal? The actor only reads publicly available product information that Torob ships in its HTML for search engines. You are responsible for respecting Torob's Terms of Service and any applicable rate limits.
  • No personal data is collected — only public product and seller metadata.
  • Frontend changes? The actor relies on Torob's JSON-LD block, which is part of their SEO contract with search engines and changes very rarely. If extraction breaks, please open an issue.