# Cashify Scraper — India Refurbished Phone Prices & Stock (`bovi/cashify-scraper`) Actor

Scrape Cashify (cashify.in) refurbished-phone listings by category, brand or price band. Returns product id, name, URL, sale/original/EMI prices, discount, stock, rating, warranty and image. Pay per result.

- **URL**: https://apify.com/bovi/cashify-scraper.md
- **Developed by:** [Vitalii Bondarev](https://apify.com/bovi) (community)
- **Categories:** E-commerce, Business
- **Stats:** 5 total users, 4 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.81 / 1,000 products

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#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

## Cashify Scraper — India Refurbished Phone Prices & Stock

Scrape product listings from **Cashify** (cashify.in), India's largest
recommerce marketplace for refurbished phones, by category, brand or price band.
Get clean, structured data for price tracking, repricing, stock monitoring,
recommerce market research or a catalog feed — **pay per product returned**, no
subscription.

### What you get

One row per product:

| Field | Description |
|-------|-------------|
| `product_id` | Cashify catalogue id |
| `title` | Product name (e.g. `Apple iPhone 11 - Refurbished`) |
| `url` | Product page URL |
| `sale_price` | Current price (INR) |
| `mrp` | Original / list price (INR) |
| `discount_pct` | Discount off MRP (%) |
| `membership_price` | Cashify membership price (INR) |
| `effective_price` | Effective price after offers (INR) |
| `emi_amount` | Indicative monthly EMI (INR) |
| `currency` | Always `INR` |
| `inventory` | Units in stock |
| `in_stock` | `true` if inventory > 0 |
| `rating` | Average star rating (0–5) |
| `total_ratings` | Number of ratings |
| `warranty` | Warranty type (e.g. `Cashify Warranty`) |
| `assured_by` | Assurance label (e.g. `Cashify Assured`) |
| `product_type` | e.g. `Mobile Phone` |
| `tags` | Marketing tags (e.g. `Budget Friendly`) |
| `image_url` | Product image URL |
| `source_url` | The listing URL this product came from |
| `scraped_at` | ISO 8601 timestamp |

### Input

| Field | Type | Description |
|-------|------|-------------|
| `startUrls` | array | Listing URLs to scrape — a brand (`…/buy-refurbished-mobile-phones/apple`), everything (`…/all-phones`), or a price band (`…/under-14999`). |
| `categoryUrl` | string | Convenience: a single listing URL added to the list. |
| `maxItems` | integer | Max products to return across all listings (default 60; `0` = unlimited). |

#### Example input

```json
{
  "startUrls": [
    { "url": "https://www.cashify.in/buy-refurbished-mobile-phones/apple" }
  ],
  "maxItems": 60
}
```

### Access & reliability

Cashify renders its catalogue with React Server Components behind a bot-defence
edge. This actor reaches the site through a **built-in managed residential exit
(India)** and a real browser, then reads the structured product payload the page
ships — **no proxy account, key, or setup is required on your side.** Parsing
keys on the site's own data fields (not styling classes), so it stays robust
across front-end redeploys.

### Pricing

Pay per product returned (pay-per-result). You are charged only for products
actually delivered to your dataset — failed or empty pages cost nothing.

# Actor input Schema

## `startUrls` (type: `array`):

Cashify refurbished-phone listing URLs to scrape — e.g. https://www.cashify.in/buy-refurbished-mobile-phones/apple (a brand), /buy-refurbished-mobile-phones/all-phones (everything), or /buy-refurbished-mobile-phones/under-14999 (a price band). Site-relative paths also work.

## `categoryUrl` (type: `string`):

Convenience field — a single listing URL, added to the list above. Leave blank if you used Listing URLs.

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

Maximum number of products to return across all listings. Default 60. Set to 0 for unlimited (you are charged per product returned).

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

Access to Cashify is handled by a managed residential exit (India) baked into the actor — no proxy account or setup is needed on your side. This field is kept for compatibility and can be left at its default.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.cashify.in/buy-refurbished-mobile-phones/apple"
    }
  ],
  "maxItems": 60,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  }
}
```

# Actor output Schema

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

Dataset containing Cashify product records (product\_id, title, url, sale\_price, mrp, discount\_pct, membership\_price, effective\_price, emi\_amount, currency, inventory, in\_stock, rating, total\_ratings, warranty, assured\_by, product\_type, tags, image\_url, scraped\_at).

# 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 = {
    "startUrls": [
        {
            "url": "https://www.cashify.in/buy-refurbished-mobile-phones/apple"
        }
    ],
    "maxItems": 60,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "IN"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("bovi/cashify-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 = {
    "startUrls": [{ "url": "https://www.cashify.in/buy-refurbished-mobile-phones/apple" }],
    "maxItems": 60,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "IN",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("bovi/cashify-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "startUrls": [
    {
      "url": "https://www.cashify.in/buy-refurbished-mobile-phones/apple"
    }
  ],
  "maxItems": 60,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  }
}' |
apify call bovi/cashify-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=bovi/cashify-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/frV6FqaraVoxypiW3/builds/eyeFfvrHkoZffMC9I/openapi.json
