IndiaMart Scraper avatar
IndiaMart Scraper
Try for free

3 days trial then $25.00/month - No credit card required now

View all Actors
IndiaMart Scraper

IndiaMart Scraper

natanielsantos/indiamart-scraper
Try for free

3 days trial then $25.00/month - No credit card required now

Scrape product data from indiamart.com with this tool. You can use it to extract title, price, images, description, and more. Download your data as HTML table, JSON, CSV, Excel, XML, and RSS feed.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    {
9      "url": "https://www.indiamart.com/proddetail/jsw-profile-roofing-sheets-10457853991.html"
10    },
11    {
12      "url": "https://www.indiamart.com/proddetail/farat-pedestal-fan-2-blade-copper-2852742675133.html"
13    },
14    {
15      "url": "https://www.indiamart.com/proddetail/industrial-pedestal-fan-24-copper-2852757365548.html"
16    }
17  ],
18  "proxySettings": {
19    "useApifyProxy": true
20  }
21}
22EOF
23
24# Run the Actor using an HTTP API
25# See the full API reference at https://docs.apify.com/api/v2
26curl "https://api.apify.com/v2/acts/natanielsantos~indiamart-scraper/runs?token=$API_TOKEN" \
27  -X POST \
28  -d @input.json \
29  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 16 monthly users
  • 1 star
  • 72.7% runs succeeded
  • Created in Dec 2023
  • Modified 3 months ago