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.

$1 / 1k products Extract Zepto product details — MRP, selling price, stock — from product URLs

Endpoint

POST /api/v1/agents/zepto/products/run

Parameters

urls
array
required
List · Zepto product page URLs. One per line.
stores
array
Multi-select · Pick one or more dark-store locations (city - pincode - store ID).View all 1202 options →
cities
array
Multi-select · Or expand by city — pick one or more cities and we’ll include all their stores.View all 82 options →
pincodes
array
Multi-select · Or expand by pincode — pick one or more pincodes and we’ll include all their stores.View all 695 options →

Response columns

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

Example

curl -X POST https://api.mindcase.co/api/v1/agents/zepto/products/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
  "params": {
    "platform": "zepto",
    "urls": [
      "https://www.zepto.com/pn/kurkure-namkeen-playz-puffcorn-yummy-cheese-snacks/pvid/c3ff38bd-c4be-4783-a08c-f8e04f9b2d1b",
      "https://www.zepto.com/pn/bingo-mad-angles-achaari-masti-crisps-crunchy-tasty/pvid/28239b4b-a028-4ccb-b8dd-62de1006b208",
      "https://www.zepto.com/pn/uncle-chipps-spicy-treat-crunchy-potato-chips/pvid/955ee89f-e341-4386-8582-7296905a9c09",
      "https://www.zepto.com/pn/x/pvid/1e28f2c0-fbc5-4366-9efb-a65bd12428cb",
      "https://www.zepto.com/pn/x/pvid/933cb209-4656-4b62-b57f-ade419232ba0",
      "https://www.zepto.com/pn/x/pvid/70bda37d-7f15-4189-b90c-e16dc170d950",
      "https://www.zepto.com/pn/x/pvid/07878a63-2656-4618-a7cc-ecfe8c2faf22",
      "https://www.zepto.com/pn/x/pvid/cc0c8026-9b71-4bdd-bc88-b55d08e50185",
      "https://www.zepto.com/pn/x/pvid/cff91b9e-62d9-46a4-bd36-974c1e8df51c",
      "https://www.zepto.com/pn/x/pvid/7602f20c-c4cd-43fc-b6a7-f72322a3d5e8"
    ],
    "store_id": "b1403534-cd6b-49d0-a7cd-ce20e6497768"
  }
}'

Example response

Response
{
  "job_id": "job_7f3a2b1c",
  "status": "completed",
  "data": [
    {
      "productUrl": "https://www.zepto.com/pn/x/pvid/79b4e78f-01c2-4865-a105-5fcc8f45ae9f",
      "city": "Bengaluru",
      "pincode": "560001",
      "productName": "Country Delight Buffalo Fresh Milk | Pouch",
      "brand": "Country Delight",
      "image": [
        "https://cdn.zeptonow.com/production/ik-seo/tr:w-1000,ar-2000-2000,pr-true,f-avif,q-40,dpr-2/cms/product_variant/70ec9537-b82c-4f7f-90b5-4b6b7c28fcb4/70ec9537-b82c-4f7f-90b5-4b6b7c28fcb4-jpeg.jpeg"
      ],
      "price": 54.0,
      "mrp": 59.0,
      "discount": 8.0,
      "quantity": "1 pack (450 ml)",
      "rating": 4.5,
      "ratingCount": 5588,
      "inStock": true,
      "inventory": 3,
      "category": "Dairy, Bread \\u0026 Eggs",
      "subCategory": "Milk",
      "platform": "Zepto",
      "productId": "79b4e78f-01c2-4865-a105-5fcc8f45ae9f"
    }
  ]
}