# Reliance Digital Keyword Rank Tracker (`ikmal_suzali_atr/reliance-digital-rank`) Actor

Full Reliance Digital (reliancedigital.in) search results per keyword with position, price, MRP and stock — see where a brand ranks. No ratings or sponsored signal on listings (is\_sponsored always false). Dual-mode: also an ATR BullMQ worker.

- **URL**: https://apify.com/ikmal\_suzali\_atr/reliance-digital-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

## Reliance Digital Keyword Rank Tracker

Captures the Reliance Digital (reliancedigital.in, India) search results slate for each keyword, with the rank of every product plus price, MRP, discount, offers and stock. Use it to see where an electronics brand ranks on the terms shoppers type, and how the competing models around it are priced.

### What you get

- One row per search result position: `keyword`, `page`, `position`, `id`, `item_code`, `name`, `brand`, `price`, `original_price` (the MRP), `discount_percent` and `product_url`.
- `total_results` for the keyword, so share of search has a denominator.
- `in_stock`, so results the site cannot sell are visible rather than missing.
- `categories`, the full category trail each result sits in, which shows what the search engine thinks the keyword means.
- `offers`, the promotional tags on the tile, and `highlights`, the product's own bullet points.
- `image_url` for the listing image.

### Input

Give the keywords to rank. Everything else has a working default.

```json
{
  "keywords": ["iphone", "washing machine"],
  "locale": "in",
  "pages": 1,
  "delayMs": 1200,
  "callsPerSession": 60,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "IN"
  }
}
```

- `keywords` (required): search terms to rank. Duplicates are ignored.
- `pages`: result pages to capture per keyword. Results are requested 50 a page.
- `delayMs` and `callsPerSession`: pacing and session rotation.
- `proxyConfiguration`: egress for the run. An Indian residential proxy is the default.

### Output

One dataset row per search result position.

```json
{
  "platform": "reliance-digital",
  "locale": "in",
  "keyword": "iphone",
  "page": 1,
  "position": 1,
  "id": "494857",
  "item_code": "RDMOB494857",
  "name": "Apple iPhone 15 128 GB Black",
  "brand": "Apple",
  "price": 62900,
  "original_price": 79900,
  "discount_percent": 21,
  "currency": "INR",
  "rating": null,
  "rating_count": null,
  "in_stock": true,
  "is_sponsored": false,
  "categories": ["Mobiles & Tablets", "Mobile Phones"],
  "offers": ["Extra 10% off on HDFC cards"],
  "total_results": 218,
  "product_url": "https://www.reliancedigital.in/product/apple-iphone-15-128-gb-black",
  "captured_at": "2026-09-12T03:35:09.757Z"
}
```

`rating` and `rating_count` are always null: Reliance Digital does not publish ratings on search results. `is_sponsored` is always `false`, because the listing data carries no paid-placement marker. `seller` is always null.

### Use cases

- Rank tracking for a model or brand across a keyword set, from `keyword` and `position`.
- Share of search on category terms, counting your `brand` against `total_results`.
- Competitive price benchmarking at rank, pairing `position` with `price` and `discount_percent`.
- Promotion monitoring on the leading results from `offers`.
- Keyword-intent checks: what `categories` the top results belong to tells you how the site reads the term.

### Notes and limits

- Results are requested 50 a page, and `pages` is capped at 10 per keyword, so up to 500 ranked positions per keyword per run.
- A keyword with no matches finishes cleanly with zero rows and a warning naming the keyword, rather than failing the run.
- No ratings and no sponsored signal exist in Reliance Digital listings. Both sets of columns are present for schema consistency and are always empty. Ad-slot share cannot be measured on this storefront.
- Only the India storefront exists.
- An Indian residential proxy is the default and is recommended. Other egress can be refused at the edge.

### FAQ

**Do I need a proxy?** Yes, use an Indian residential proxy. That is the actor default.

**How many results can I get?** 50 results a page and up to 10 pages per keyword.

**Does it need a login or an API key?** No. No account and no key.

**Can I see which results are ads?** No. Reliance Digital does not mark paid placements in its search data, so `is_sponsored` is always false and every row should be read as organic.

**What happens to a nonsense keyword?** The capture succeeds with zero rows and a warning naming the keyword, so a dead term shows up in the run instead of quietly disappearing.

# Actor input Schema

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

Search keywords to rank. Duplicates are ignored.

## `locale` (type: `string`):

Which storefront / locale.

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

## `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 the storefront's country is recommended (IN for the default). On our own servers it is ignored and our residential proxy is used.

## Actor input object example

```json
{
  "keywords": [
    "iphone"
  ],
  "locale": "in",
  "pages": 0,
  "delayMs": 1200,
  "callsPerSession": 60,
  "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": [
        "iphone"
    ],
    "pages": 0
};

// Run the Actor and wait for it to finish
const run = await client.actor("ikmal_suzali_atr/reliance-digital-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": ["iphone"],
    "pages": 0,
}

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

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,ikmal_suzali_atr/reliance-digital-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/xweID1xfFzBaPYxhh/builds/Jd30pQjEoy4WGAOdq/openapi.json
