Flipkart Minutes Catalogue by Pincode avatar

Flipkart Minutes Catalogue by Pincode

Pricing

from $2.50 / 1,000 results

Go to Apify Store
Flipkart Minutes Catalogue by Pincode

Flipkart Minutes Catalogue by Pincode

Every product on Flipkart Minutes (10-minute delivery) or Flipkart Grocery for a pincode, subcategory by subcategory: name, brand, price, MRP, discount, rating, stock state, dark store. Subcategories are discovered from the store page for that pincode; filter to the ones you need. Dual-mode: the sam

Pricing

from $2.50 / 1,000 results

Rating

0.0

(0)

Developer

AtTheRate AI

AtTheRate AI

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

Pulls the whole Flipkart Minutes storefront, the 10-minute delivery service, for an Indian pincode: every subcategory, every product, with name, brand, price, MRP, discount, rating and stock state. Flipkart Grocery (Supermart) runs from the same actor. Subcategories come from your pincode's store page, so you get that store's real shelf, not a national list.

What you get

  • Shelf order and price economics: subcategory, subcategory_uri, page, position, selling_price, mrp, discount_percent, discount_amount.
  • Availability you can act on: in_stock plus raw availability_state (IN_STOCK, OUT_OF_STOCK).
  • Identity for joining: product_id (FSN), listing_id, title, brand, subtitle, vertical, image_url, product_url, plus rating and review_count where published.
  • Location honesty: every row carries its pincode, and an unresolvable or unserved pincode is reported and skipped, never answered with another area's data.
  • One switch: marketplace selects Minutes or Grocery with the same input and output shape.

Input

pincodes is required. Everything else narrows the crawl.

{
"pincodes": ["122002", "560001"],
"marketplace": "HYPERLOCAL",
"subcategories": ["Fruits"],
"maxPages": 1,
"concurrency": 2,
"delayMs": 500,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"],
"apifyProxyCountry": "IN"
}
}
  • pincodes: 6-digit Indian pincodes, each resolved to the store serving it.
  • marketplace: HYPERLOCAL for Minutes or GROCERY for Supermart.
  • subcategories: case-insensitive name match such as Fruits. Empty means all, around 38 on Minutes.
  • maxPages: pages per subcategory, 0 means all, at 40 products a page. concurrency runs 1 to 4 subcategories in parallel.
  • proxyConfiguration: residential IN is the default.

Output

One row per product, per subcategory, per pincode. A single pincode filtered to fruit returned 408 rows over 11 subcategories; two pincodes at one page each returned 1,382 rows over 37 subcategories.

{
"platform": "flipkart-minutes",
"pincode": "122002",
"subcategory": "Fruits",
"page": 1,
"position": 1,
"product_id": "FRTHGZ8ZQ9YKQ4XB",
"title": "Fresh Banana",
"brand": null,
"subtitle": "6 pieces",
"selling_price": 48,
"mrp": 60,
"discount_percent": 20,
"in_stock": true,
"availability_state": "IN_STOCK",
"vertical": "fruit",
"marketplace": "HYPERLOCAL",
"fetched_at": "2026-09-11T08:57:51.443Z"
}

rating, rating_count and review_count are null on most grocery listings: Flipkart rarely publishes ratings for fresh and packaged staples. brand is null where the brand lives inside title.

Use cases

  • Quick-commerce price tracking against other 10-minute apps on the same pincodes.
  • Availability monitoring from in_stock and availability_state, and assortment gaps by comparing the product_id set between pincodes.
  • Shelf-position tracking with subcategory, page and position, and category coverage audits: the subcategory list itself changes by store.

Notes and limits

  • A Minutes store carries around 38 subcategories. Grocery differs by area, and both come from your pincode's store page, not a fixed list.
  • 40 products per page. An unresolvable pincode such as 999999 is logged and skipped with zero rows.
  • A pincode Minutes does not cover yields no subcategories and is counted unserviceable, again zero rows.
  • These rows carry no sponsored or ad flag: the Minutes and Grocery listing payloads do not mark paid placements.
  • A pincode can fail on a bad proxy exit. It is reported and the run continues with the rest.

FAQ

Do I need a proxy? A residential proxy in India is recommended and is the default. Every pincode needs its own location handshake, so it matters more here than on national Flipkart.

How many results can I get? A full store per pincode. One verified run returned 1,382 products over 37 subcategories for two pincodes at one page each. Set maxPages to 0 for full coverage.

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

How does a pincode pick a store? For Minutes the pincode is resolved to coordinates that set the delivery location; for Grocery a serviceability check binds the session. Subcategory tiles are then read from that store's own page, so the shelf you crawl is the shelf a shopper there sees.