> ## Documentation Index
> Fetch the complete documentation index at: https://mindcase.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Blinkit Category

> Extract Blinkit category page listings — products, prices, stock, ratings — from category URLs

`$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

<ParamField body="category" type="array" required>
  **Multi-select** · Subcategories to scrape (Main → Sub). Pick one or more.

  [View all 321 options →](/agents/blinkit/category/values#category)
</ParamField>

<ParamField body="stores" type="array">
  **Multi-select** · Pick one or more dark-store locations (city - pincode - store ID).

  [View all 2100 options →](/agents/blinkit/category/values#stores)
</ParamField>

<ParamField body="cities" type="array">
  **Multi-select** · Or expand by city — pick one or more cities and we'll include all their stores.

  [View all 253 options →](/agents/blinkit/category/values#cities)
</ParamField>

<ParamField body="pincodes" type="array">
  **Multi-select** · Or expand by pincode — pick one or more pincodes and we'll include all their stores.

  [View all 1286 options →](/agents/blinkit/category/values#pincodes)
</ParamField>

## Response columns

| Field         | Display name | Type       |
| ------------- | ------------ | ---------- |
| `category`    | Category     | text       |
| `storeId`     | Store ID     | text       |
| `city`        | City         | text       |
| `pincode`     | Pincode      | text       |
| `productUrl`  | Product URL  | url        |
| `productName` | Product Name | text       |
| `brand`       | Brand        | text       |
| `image`       | Image        | url        |
| `price`       | Price        | currency   |
| `mrp`         | MRP          | currency   |
| `discount`    | Discount %   | percentage |
| `quantity`    | Quantity     | text       |
| `rating`      | Rating       | rating     |
| `inStock`     | In Stock     | boolean    |
| `inventory`   | Inventory    | number     |
| `subCategory` | Sub-Category | text       |
| `platform`    | Platform     | text       |
| `productId`   | Product ID   | text       |

## Example

<CodeGroup>
  ```bash curl theme={null}
  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
    }
  }'
  ```

  ```python Python theme={null}
  import requests

  resp = requests.post(
      "https://api.mindcase.co/api/v1/agents/blinkit/category/run",
      headers={"Authorization": "Bearer mk_live_abc123def456"},
      json={"params": {
      "platform": "blinkit",
      "store_id": "40144",
      "category": "Munchies",
      "max_pages": 1
  }},
  )
  data = resp.json()
  ```
</CodeGroup>

### Example response

```json Response theme={null}
{
  "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"
    }
  ]
}
```
