Torob Product Sellers Scraper
Pricing
Pay per usage
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
Maintained by CommunityActor 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
InStockand who doesn't. - Deal hunting — find the cheapest seller programmatically (the dataset includes
lowPriceRialandhighPriceRialper 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
- Open the actor's Input tab.
- Paste a Torob product page URL — anything that looks like
https://torob.com/p/<uuid>/<slug>/. - (Optional) Toggle Apify Proxy if you want the request routed through Apify's proxy network.
- Click Start.
- 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/"}
| Field | Type | Required | Description |
|---|---|---|---|
url | string | yes | Torob product page URL |
proxyConfiguration | object | no | Apify 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
| Field | Description |
|---|---|
productName | Persian product title as shown on Torob |
productUrl | Canonical product URL |
productSku | Torob's internal product UUID |
brand | Brand name |
image | Main product image URL |
sellerName | The merchant name |
priceRial | Price in Iranian Rial (the unit Torob uses internally) |
priceToman | Same price converted to Toman (priceRial / 10) — what shoppers usually compare |
priceCurrency | Always IRR |
availability | InStock, OutOfStock, … (with the schema.org/ prefix stripped) |
sellerLinkUrl | The Torob redirect link that takes you to the seller's product page |
priceValidUntil | Date until which Torob claims the price is valid |
lowPriceRial | Cheapest price among all sellers for this product (denormalized for convenience) |
highPriceRial | Highest price among all sellers |
offerCount | Total 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.