# Where does Flipkart Minutes deliver?

**Use case:** 

Two areas Flipkart Minutes serves and three points it does not, side by side. Each location returns whether it is served, which dark store serves it and how many minutes it promises. Replace the points with your own catchments.

## Input

```json
{
  "locations": [
    "Mumbai · Powai",
    "Kolkata · Park Street"
  ],
  "customLocations": [
    "19.1197,72.8464,Mumbai Andheri East",
    "22.5726,88.3639,Kolkata centre",
    "31.1048,77.1734,Shimla Mall Road"
  ],
  "searchTerms": [
    "milk"
  ],
  "fullCatalog": false,
  "maxItems": 1,
  "includeDetails": false,
  "sortBy": "relevance",
  "onlyInStock": false
}
```

## Output

```json
{
  "locationLabel": {
    "label": "Location Label"
  },
  "latitude": {
    "label": "Latitude"
  },
  "longitude": {
    "label": "Longitude"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "area": {
    "label": "Area"
  },
  "serviceable": {
    "label": "Serviceable"
  },
  "storeId": {
    "label": "Store Id"
  },
  "deliveryMinutes": {
    "label": "Delivery Minutes"
  },
  "deliverySeconds": {
    "label": "Delivery Seconds"
  },
  "storeCount": {
    "label": "Store Count"
  },
  "stores": {
    "label": "Stores",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped At"
  }
}
```

## About this Actor

This example demonstrates how to use [Flipkart Minutes Scraper: Prices, Stock & Delivery Time](https://apify.com/clearpath/flipkart-minutes-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/clearpath/flipkart-minutes-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/clearpath/flipkart-minutes-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
