# ExportersIndia Scraper - B2B Products & Suppliers (`serp.cheap.ofc/exportersindia-scraper`) Actor

Scrape ExportersIndia product listings and suppliers. Search by keyword and pull full product details: price, MOQ, specifications, images, and supplier profile with location and GST. Pay per result, no start fee, no subscription.

- **URL**: https://apify.com/serp.cheap.ofc/exportersindia-scraper.md
- **Developed by:** [serp.cheap](https://apify.com/serp.cheap.ofc) (community)
- **Categories:** Lead generation, E-commerce, Other
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## ExportersIndia Scraper — B2B Products & Suppliers

Scrape **ExportersIndia.com**, one of India's largest B2B marketplaces, on Apify. Search by
keyword or paste a listing URL and pull **complete product and supplier details** — price, MOQ,
specifications, images, and the supplier's profile with location and GST.

**Pay per result, no start fee, no subscription.**

### Why this one

- **The full product surface.** Each product returns everything the listing holds: title, brand,
  price (with unit and MOQ), full specification table, category path, description and every image.
- **The supplier behind it.** Company name and profile URL, verified status, member-since,
  nature of business, GST number, and full address (city / state / country).
- **Flexible search.** By keyword (`shirt`, `ball valve`, `basmati rice`…) with optional city,
  state, business-type and country filters — or paste any ExportersIndia search URL. Pagination is
  automatic.
- **Self-monitored.** Every run checks upstream health, catching site changes early.

### Modes

Set `mode` in the input:

#### `search` — list products

`{ "mode": "search", "query": "ball valve" }`
or paste URLs: `{ "mode": "search", "searchUrls": ["https://www.exportersindia.com/search.php?term=ball+valve&srch_catg_ty=prod"] }`
Returns product cards (title, price, MOQ, supplier, location, thumbnail, URL). Set
`detailFollow: true` to also fetch each product's full detail page.

#### `detail` — full product + supplier detail

`{ "mode": "detail", "detailUrls": ["https://www.exportersindia.com/product-detail/saganeri-printed-shirt-2852299834.htm"] }`
Accepts ExportersIndia product URLs. Returns the complete product object with supplier profile.

#### `selftest` — free health check

Probes search + detail and reports which are healthy. No charge.

### Search filters

`query`, `city`, `stateCode`, `businessType`, `country` — or just paste `searchUrls`.
`maxItems` caps how many results are returned.

### Notes

- Output is two dataset views: **Listings** (search cards) and **Product detail** (full objects).
  Prices are in Indian Rupees (INR).
- Supplier phone numbers are gated behind the marketplace's own contact flow and are **not**
  included; company name, profile URL, address and GST are returned.

### Pricing

Pay per result — no monthly fee, no start fee. See the Store pricing panel.

# Actor input Schema

## `mode` (type: `string`):

'search' = list product listings (by keyword or a pasted ExportersIndia URL). 'detail' = full product + supplier detail for specific product URLs. 'selftest' = free health check.

## `query` (type: `string`):

Product or service to search for (e.g. shirt, ball valve, basmati rice). Used in 'search' mode.

## `searchUrls` (type: `array`):

Paste one or more ExportersIndia search URLs instead of a keyword. If set, the keyword is ignored. Pagination is automatic.

## `city` (type: `string`):

Optional city name to narrow the search.

## `stateCode` (type: `string`):

Optional ExportersIndia state code to narrow the search.

## `businessType` (type: `string`):

Optional business-type code (e.g. manufacturer, exporter).

## `country` (type: `string`):

Optional country code to narrow the search.

## `detailUrls` (type: `array`):

For 'detail' mode: ExportersIndia product URLs (e.g. https://www.exportersindia.com/product-detail/<slug>.htm).

## `detailFollow` (type: `boolean`):

In 'search' mode, also fetch each product's detail page for the full spec + supplier surface. Costs one detail charge per product (slower).

## `maxItems` (type: `integer`):

Cap on listings returned (search) or product pages (detail).

## `proxyConfiguration` (type: `object`):

The default Apify proxy works well.

## `debug` (type: `boolean`):

Verbose per-request logging for troubleshooting.

## Actor input object example

```json
{
  "mode": "search",
  "searchUrls": [],
  "detailFollow": false,
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "debug": false
}
```

# Actor output Schema

## `listings` (type: `string`):

No description

## `detail` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchUrls": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("serp.cheap.ofc/exportersindia-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "searchUrls": [] }

# Run the Actor and wait for it to finish
run = client.actor("serp.cheap.ofc/exportersindia-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchUrls": []
}' |
apify call serp.cheap.ofc/exportersindia-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,serp.cheap.ofc/exportersindia-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/88eDbaf9FtEl1SmNi/builds/6ifAUwmV0Ba1sCj2Q/openapi.json
