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.003 / 1k products Search Blinkit by query — listings, prices, stock, ratings, images

Endpoint

POST /api/v1/agents/blinkit/search/run

Parameters

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 →
queries
array
required
List · Search queries (e.g. milk, bread). One per line.
maxResults
integer
default:50
Number · Maximum products to return per store × query. Use 0 for all.

Response columns

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

Example

curl -X POST https://api.mindcase.co/api/v1/agents/blinkit/search/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
  "params": {
    "platform": "blinkit",
    "stores": [
      "40144"
    ],
    "queries": [
      "milk",
      "chips"
    ],
    "max_pages": 1
  }
}'

Example response

Response
{
  "job_id": "job_7f3a2b1c",
  "status": "completed",
  "data": [
    {
      "searchQuery": "milk",
      "storeId": "40144",
      "city": "Bengaluru",
      "pincode": "560003",
      "productUrl": "https://blinkit.com/prn/x/prid/720182",
      "productName": "Akshayakalpa Organic High Protein Cow Milk",
      "brand": "Akshayakalpa Organic",
      "image": [
        "https://cdn.grofers.com/da/cms-assets/cms/product/rc-upload-1776407894015-210.png",
        "https://cdn.grofers.com/da/cms-assets/cms/product/rc-upload-1776407894015-211.png",
        "https://cdn.grofers.com/da/cms-assets/cms/product/rc-upload-1776407894015-212.png",
        "https://cdn.grofers.com/da/cms-assets/cms/product/rc-upload-1776407894015-213.png",
        "https://cdn.grofers.com/da/cms-assets/cms/product/rc-upload-1776407894015-214.png",
        "https://cdn.grofers.com/da/cms-assets/cms/product/rc-upload-1776407894015-215.png",
        "https://cdn.grofers.com/da/cms-assets/cms/product/rc-upload-1776407894015-216.png"
      ],
      "price": 95.0,
      "mrp": 100.0,
      "discount": 5.0,
      "quantity": "250 ml",
      "rating": 3.33,
      "inStock": true,
      "inventory": 6,
      "subCategory": "Cow Milk",
      "platform": "Blinkit",
      "page": 0,
      "productId": "720182",
      "variantId": "720182"
    }
  ]
}