# Blinkit — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for products and check real-time availability across Blinkit locations, browse categories, and view detailed product information all from one place. Set your location to discover what's currently in stock nearby and compare offerings.

**Category:** Food & Dining | **Website:** [blinkit.com/](https://blinkit.com/) | **Docs:** [parse.bot/marketplace/eb4bb2fc-d6a9-4161-a90c-0dda94e9dcd9/blinkit-com-api](https://parse.bot/marketplace/eb4bb2fc-d6a9-4161-a90c-0dda94e9dcd9/blinkit-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-blinkit-com-api-eb4bb2fc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

Retrieve top-level product categories from the Blinkit homepage. Returns all available department-level categories with their names, IDs, deeplinks, and icon images. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blinkit-com-api-eb4bb2fc/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_details

Retrieve full details for a specific product including price, brand, inventory count, and all images. The product_id can be obtained from search_products results. Returns current availability and pricing for the default delivery location.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Product ID to look up (from search_products results product_id field, e.g. '19512') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blinkit-com-api-eb4bb2fc/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### search_products

Search for products by keyword. Returns a list of matching products with name, price, unit, and image. Results reflect the default delivery location (Gurugram) unless set_location was called previously in the same session. Supports offset-based pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Max results to return per request |
| `offset` | integer | No | Offset for pagination (number of items to skip) |
| `query` | string | Yes | Search keyword (e.g. 'milk', 'bread', 'vegetables') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blinkit-com-api-eb4bb2fc/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","query":"<string>"}'
```

### set_location

Set the delivery location by searching for an area name or pincode. Returns the resolved location with coordinates, city, locality, and serviceability status. Subsequent search and product calls reflect availability for this location. If no location is set, a default location (Gurugram) is used.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Area name or pincode to search for (e.g. 'Mumbai', 'New Delhi', '110001') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blinkit-com-api-eb4bb2fc/set_location \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
