# Meesho Keyword Rank Tracker (`ikmal_suzali_atr/meesho-rank`) Actor

Full Meesho search results per keyword with position and ad flag (isAdProduct) — see where a catalog ranks and who holds the paid slots. Pure HTTP on Meesho's search API, 50 per page. Needs an Indian proxy. Dual-mode: the same code runs as an ATR BullMQ worker.

- **URL**: https://apify.com/ikmal\_suzali\_atr/meesho-rank.md
- **Developed by:** [AtTheRate AI](https://apify.com/ikmal_suzali_atr) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.00 / 1,000 results

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?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Meesho Keyword Rank Tracker

Tracks where any catalog ranks for a keyword on Meesho and which competitors hold the paid slots above it. Every result position comes back in order with price, MRP, discount, rating, review counts and an ad flag, 50 a page, so you can measure organic and paid share of search on India's largest value-fashion marketplace.

### What you get

- True ranking order: `keyword`, `page` and `position`, counted continuously across pages.
- An ad flag on every row: `is_sponsored`, taken from Meesho's own paid-listing marker.
- Price economics at the result: `price`, `original_price`, `discount_percent` and `discount_text`.
- Social proof that drives clicks: `rating`, `rating_count` and `review_count`, plus the `mall_verified` and `assured` trust badges.
- Landed-cost detail in `shipping_charges`, `num_designs` for catalog depth, and `total_results` for how contested a keyword is.

### Input

`keywords` is required. There is no location input: Meesho ranks nationally.

```json
{
  "keywords": ["kurti", "cotton saree"],
  "pages": 1,
  "concurrency": 2,
  "delayMs": 1000,
  "callsPerSession": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "IN"
  }
}
```

- `keywords`: the search terms to rank. Duplicates are ignored.
- `pages`: result pages per keyword, 1 to 10, at 50 results each. `concurrency` runs 1 to 4 keywords in parallel.
- `proxyConfiguration`: residential country IN is the default and is mandatory in practice.

### Output

One row per result position. A verified run over two keywords at one page returned 50 rows, one keyword having matched nothing.

```json
{
  "keyword": "kurti",
  "page": 1,
  "position": 1,
  "is_sponsored": false,
  "id": "123456789",
  "name": "Aagam Petite Cotton Kurtis",
  "brand": null,
  "price": 349,
  "original_price": 999,
  "discount_percent": 65,
  "discount_text": "65% off",
  "rating": 3.9,
  "rating_count": 1204,
  "review_count": 187,
  "in_stock": true,
  "assured": true,
  "shipping_charges": 0,
  "total_results": 8421,
  "product_url": "https://www.meesho.com/aagam-petite-cotton-kurtis/p/123456789",
  "captured_at": "2026-09-12T11:09:33.210Z"
}
```

`brand` and `seller` are always null: Meesho search results carry no brand or seller field, because most catalogs are unbranded supplier listings. `original_price` is null without a discount.

### Use cases

- Share of search: count how many of the top 50 positions your catalogs hold per keyword, daily.
- Paid share of voice from `is_sponsored`, and competitor pricing at rank: read `price` and `discount_percent` against `position` to see what wins the top of the page.
- Badge impact analysis by comparing `assured` and `mall_verified` rates in the top 10 against the rest.
- Keyword contestedness from `total_results` and how fast rank decays between pages.

### Notes and limits

- An Indian proxy is mandatory. Meesho refuses non-Indian egress at the edge and the run fails fast saying so.
- 50 results per page and a cap of 10 pages per keyword, so 500 ranked positions each.
- A keyword that matches nothing returns zero rows. Meesho never returns an empty search: it serves a fallback feed of random catalogs and reports the whole corpus as the result count. That is detected and suppressed, with a warning naming the keyword, so you never get noise dressed up as rankings.
- Pages are walked in order because each needs the cursor from the one before. Sessions re-mint after 100 fetches.
- Sponsored density varies by keyword. Two verified captures returned no sponsored rows at all, so do not assume every query has paid slots.

### FAQ

**Do I need a proxy?** Yes, and it must be Indian. Residential country IN is the default. Without it the run stops immediately with the reason.

**How many results can I get?** Up to 10 pages of 50 results per keyword, so 500 ranked positions, with no limit on how many keywords you submit.

**Does it need login or an API key?** No Meesho account, cookie or key is required.

**How do I know a zero-row keyword is genuinely unmatched?** The run logs a warning naming the keyword and marks the capture empty. That happens only when Meesho reports a result count far above its real cap, which is its own signature for a no-match query.

# Actor input Schema

## `keywords` (type: `array`):

Search keywords to rank. Duplicates are ignored.

## `pages` (type: `integer`):

Result pages to capture per keyword. Leave at 0 to capture every result page; the run stops as soon as the results end.

## `concurrency` (type: `integer`):

1–4.

## `delayMs` (type: `integer`):

Pause between page fetches.

## `callsPerSession` (type: `integer`):

Re-mint the session after this many page fetches.

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

On the Apify platform this decides egress; a residential proxy in India is recommended. On our own servers it is ignored and our residential proxy is used.

## Actor input object example

```json
{
  "keywords": [
    "kurti"
  ],
  "pages": 0,
  "concurrency": 2,
  "delayMs": 1000,
  "callsPerSession": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  }
}
```

# Actor output Schema

## `results` (type: `string`):

One row per search result position.

## `summary` (type: `string`):

Counts for the run: what was requested, captured, skipped and failed.

# 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 = {
    "keywords": [
        "kurti"
    ],
    "pages": 0
};

// Run the Actor and wait for it to finish
const run = await client.actor("ikmal_suzali_atr/meesho-rank").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 = {
    "keywords": ["kurti"],
    "pages": 0,
}

# Run the Actor and wait for it to finish
run = client.actor("ikmal_suzali_atr/meesho-rank").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 '{
  "keywords": [
    "kurti"
  ],
  "pages": 0
}' |
apify call ikmal_suzali_atr/meesho-rank --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,ikmal_suzali_atr/meesho-rank"
        }
    }
}
```

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/4knlOegXVrSpnLdNC/builds/cjFoAhffppFvZAa7g/openapi.json
