Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mindcase.co/llms.txt

Use this file to discover all available pages before exploring further.

$0.005 / 1k products Extract Blinkit category page listings — products, prices, stock, ratings — from category URLs

Endpoint

POST /api/v1/agents/blinkit/category/run

Parameters

category
array
required
Multi-select · Subcategories to scrape (Main → Sub). Pick one or more.View all 321 options →
stores
array
Multi-select · Pick one or more dark-store locations (city - pincode - store ID).View all 2100 options →
cities
array
Multi-select · Or expand by city — pick one or more cities and we’ll include all their stores.View all 253 options →
pincodes
array
Multi-select · Or expand by pincode — pick one or more pincodes and we’ll include all their stores.View all 1286 options →

Response columns

FieldDisplay nameType
categoryCategorytext
storeIdStore IDtext
cityCitytext
pincodePincodetext
productUrlProduct URLurl
productNameProduct Nametext
brandBrandtext
imageImageurl
pricePricecurrency
mrpMRPcurrency
discountDiscount %percentage
quantityQuantitytext
ratingRatingrating
inStockIn Stockboolean
inventoryInventorynumber
subCategorySub-Categorytext
platformPlatformtext
productIdProduct IDtext

Example

curl -X POST https://api.mindcase.co/api/v1/agents/blinkit/category/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
  "params": {
    "platform": "blinkit",
    "store_id": "40144",
    "category": "Munchies",
    "max_pages": 1
  }
}'

Example response

Response
{
  "job_id": "job_7f3a2b1c",
  "status": "completed",
  "data": [
    {
      "category": "Munchies",
      "storeId": "31277",
      "city": "Bengaluru",
      "pincode": "560010",
      "productUrl": "https://blinkit.com/prn/x/prid/481020",
      "productName": "DNV Appalam Papad",
      "brand": "DNV",
      "image": [
        "https://cdn.grofers.com/da/cms-assets/cms/product/rc-upload-1776886180625-32.png"
      ],
      "price": 41.0,
      "mrp": 50.0,
      "discount": 18.0,
      "quantity": "100 g",
      "rating": 4.55,
      "inStock": true,
      "inventory": 5,
      "subCategory": "Papad & Fryums",
      "platform": "Blinkit",
      "productId": "481020"
    }
  ]
}