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 Instamart by query — listings, prices, stock, ratings, images

Endpoint

POST /api/v1/agents/instamart/search/run

Parameters

stores
array
Multi-select · Pick one or more dark-store locations (city - pincode - store ID).View all 1206 options →
cities
array
Multi-select · Or expand by city — pick one or more cities and we’ll include all their stores.View all 145 options →
pincodes
array
Multi-select · Or expand by pincode — pick one or more pincodes and we’ll include all their stores.View all 820 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
categoryCategorytext
subCategorySub-Categorytext
platformPlatformtext
pagePagenumber
productIdProduct IDtext
variantIdVariant IDtext

Example

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

Example response

Response
{
  "job_id": "job_7f3a2b1c",
  "status": "completed",
  "data": [
    {
      "searchQuery": "milk",
      "storeId": "1313712",
      "city": "Bengaluru",
      "pincode": "560001",
      "productUrl": "https://www.swiggy.com/instamart/item/LB3ZS2R9VC",
      "productName": "Nandini Shubam Milk",
      "brand": "Nandini",
      "image": [
        "https://instamart-media-assets.swiggy.com/swiggy/image/upload/fl_lossy,f_auto,q_auto,h_600/NI_CATALOG/IMAGES/ciw/2025/12/17/b816eaab-cccf-4cf0-8935-23b465e49232_DOQWASOGZL_MN_17122025.png",
        "https://instamart-media-assets.swiggy.com/swiggy/image/upload/fl_lossy,f_auto,q_auto,h_600/gpi1i1rmexem3f2aohls",
        "https://instamart-media-assets.swiggy.com/swiggy/image/upload/fl_lossy,f_auto,q_auto,h_600/jo6meqy4flvj3jjvs6u1"
      ],
      "price": 52.0,
      "mrp": 52.0,
      "discount": 0.0,
      "quantity": "1 ltr",
      "rating": 4.4,
      "inStock": true,
      "inventory": 1,
      "category": "Milk",
      "subCategory": "Pasteurized",
      "platform": "Instamart",
      "page": 0,
      "productId": "LB3ZS2R9VC",
      "variantId": "DJZOSOLGGV"
    }
  ]
}