# Blinkit Scraper (`solidcode/blinkit-scraper`) Actor

\[💰 $1.9 / 1K] Extract product prices, discounts, pack sizes, and availability from Blinkit, India's instant-grocery service. Search by keyword or URL and set a delivery location for accurate local pricing.

- **URL**: https://apify.com/solidcode/blinkit-scraper.md
- **Developed by:** [SolidCode](https://apify.com/solidcode) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.90 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Blinkit Scraper

Pull live product, price, and availability data from Blinkit — India's 10-minute instant-grocery service — including selling price, MRP, discount, pack size, in-stock status, delivery ETA, ratings, and product images, all priced for the exact delivery location you choose. Built for q-commerce competitive-intelligence teams, FMCG brands monitoring shelf price and stock, and grocery-price analysts who need accurate store-level Blinkit data across Indian cities without building and maintaining their own collector.

### Why This Scraper?

- **Location-accurate pricing for any delivery point** — Blinkit prices, stock, and delivery times change store-by-store; this actor returns the real local price for the city or coordinates you pick, verified across Delhi, Mumbai, and Bangalore (the same milk priced differently in each).
- **City picker with 10 named Indian metros** — Delhi, Mumbai, Bangalore, Hyderabad, Chennai, Kolkata, Pune, Ahmedabad, Gurgaon, and Noida — no coordinate hunting required.
- **Pinpoint custom coordinates** — switch the city picker to Custom and enter an exact latitude/longitude to scrape a specific neighborhood's serving store.
- **Batch keyword search** — queue many search terms in one run (e.g. "milk", "amul butter", "maggi noodles"); each term runs as its own search with its own result cap.
- **Selling price, MRP, and discount on every row** — current price (₹), original MRP (₹), and a derived discount % (null when there's genuinely no discount, never a fake 0%).
- **Pack-size and availability fields** — exact unit ("500 ml", "1 kg", "6 pcs"), a true/false in-stock flag for the chosen store, and the live delivery ETA window.
- **Ratings, image, product ID, and canonical URL** — average rating, rating count (parsed cleanly from Indian-style "13 lac"/"1.2k" formats), product image, Blinkit product ID, and a ready-to-open product link per row.
- **Paste Blinkit search or category URLs** — drop in any `blinkit.com/s/?q=...` search link or `/cn/.../cid/...` category page; in-URL filters are applied automatically.
- **Automatic deduplication** — results are deduped by product ID across pages, so overlapping loads never produce duplicate rows.

### Use Cases

**Q-commerce Competitive Intelligence**
- Track Blinkit's catalog and prices against Zepto, Instamart, and BigBasket
- Monitor instant-delivery ETAs by city to benchmark fulfillment speed
- Map which SKUs a competitor stocks in each metro
- Spot assortment gaps between dark stores in different cities

**FMCG Brand Price Monitoring**
- Watch your own products' selling price and MRP on Blinkit shelves
- Detect unauthorized discounting or price erosion across regions
- Verify in-stock status of your SKUs at store level
- Compare your pack sizes and pricing against rival brands

**Market & Pricing Research**
- Build product price datasets across Delhi, Mumbai, Bangalore, and 7 more metros
- Study regional brand presence (e.g. Nandini in Karnataka, Gokul in Maharashtra)
- Track discount depth and MRP-to-price gaps by category
- Feed dynamic-pricing models with real store-level grocery data

**Availability & Assortment Tracking**
- Monitor stock-outs of high-velocity SKUs by delivery area
- Track when new products appear in a category
- Measure delivery-time promises across neighborhoods
- Audit catalog breadth for a brand or category over time

### Getting Started

#### Simple Keyword Search

Search a single term in the default city (Delhi):

```json
{
    "searchTerms": ["milk"],
    "maxResults": 50
}
````

#### Compare One Product Across Cities

Run the same term in different metros to compare regional pricing — launch a run per city:

```json
{
    "searchTerms": ["amul butter", "maggi noodles"],
    "city": "mumbai",
    "maxResults": 100
}
```

#### Category URL with Custom Coordinates

Paste a Blinkit category URL and target an exact neighborhood by coordinates:

```json
{
    "startUrls": ["https://blinkit.com/cn/dairy-bread-eggs/cid/14/922"],
    "city": "custom",
    "latitude": "12.9716",
    "longitude": "77.5946",
    "maxResults": 200
}
```

### Input Reference

#### What to Scrape

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `searchTerms` | string\[] | `["milk"]` | Products to search for, one per line (e.g. "milk", "amul butter", "maggi noodles"). Each term runs as its own search. |
| `startUrls` | string\[] | `[]` | Blinkit search or category URLs (e.g. `https://blinkit.com/s/?q=milk` or a category page link). Filters in the URL are applied automatically. Leave empty if you only use Search Terms. |

#### Delivery Location

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `city` | select | `Delhi` | The city to scrape from. Choose Delhi, Mumbai, Bangalore, Hyderabad, Chennai, Kolkata, Pune, Ahmedabad, Gurgaon, Noida, or "Custom (use coordinates below)". Prices and stock depend on the delivery area. |
| `latitude` | string | `""` | Exact delivery latitude (e.g. 28.6139). Only used when City is set to Custom. |
| `longitude` | string | `""` | Exact delivery longitude (e.g. 77.2090). Only used when City is set to Custom. |

#### Options

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `maxResults` | integer | `100` | Maximum number of products to collect for each search term or URL. Set to 0 for no limit. Start with 20-50 to test, then increase. |

### Output

Each product is one flat row in the dataset. Here's a representative result:

```json
{
    "name": "Amul Taaza Toned Fresh Milk",
    "brand": "Amul",
    "price": 31,
    "mrp": 33,
    "discountPercent": 6,
    "unit": "500 ml",
    "inStock": true,
    "deliveryTime": "12 mins",
    "imageUrl": "https://cdn.grofers.com/app/images/products/sliding_image/amul-taaza.jpg",
    "productId": "14258",
    "category": "dairy bread eggs",
    "rating": 4.6,
    "ratingCount": 3685,
    "searchTerm": "milk",
    "sourceUrl": null,
    "url": "https://blinkit.com/prn/amul-taaza-toned-fresh-milk/prid/14258",
    "location": {
        "city": "Delhi",
        "latitude": 28.6139,
        "longitude": 77.209
    },
    "scrapedAt": "2026-05-29T14:30:00Z"
}
```

#### Product Fields

| Field | Type | Description |
|-------|------|-------------|
| `name` | string | Product display name |
| `brand` | string | null | Brand name |
| `price` | number | null | Current selling price in INR (₹) |
| `mrp` | number | null | Maximum Retail Price (original price) in INR (₹) |
| `discountPercent` | number | null | Discount percentage off MRP; null when there is no genuine discount |
| `unit` | string | null | Pack size / quantity (e.g. "500 ml", "1 kg", "6 pcs") |
| `inStock` | boolean | Whether the product is available at the chosen delivery location |
| `deliveryTime` | string | null | Estimated delivery window (e.g. "12 mins") |
| `imageUrl` | string | null | Product image URL |
| `productId` | string | null | Blinkit product / variant ID |
| `category` | string | null | Category grouping (set for category URLs; null for keyword searches) |
| `rating` | number | null | Average customer rating |
| `ratingCount` | integer | null | Number of ratings |
| `searchTerm` | string | null | The search term that produced this row (null for URL inputs) |
| `sourceUrl` | string | null | The input URL that produced this row (null for keyword inputs) |
| `url` | string | null | Canonical Blinkit product URL |
| `location` | object | The delivery location used for this row: `city`, `latitude`, `longitude` |
| `scrapedAt` | string | ISO 8601 timestamp of collection |

### Tips for Best Results

- **Set the city closest to your target market** — Blinkit prices, stock, and delivery times are store-specific, so the delivery location you pick determines the data you get.
- **Run the same term across multiple cities to compare regional pricing** — launch one run per city (e.g. Delhi vs. Mumbai vs. Bangalore) and join the results on product name to see local price gaps and regional-only brands.
- **Use Custom coordinates for a precise neighborhood** — set City to Custom and paste an exact latitude/longitude (right-click a spot in Google Maps to copy them) when a city-center point isn't where you want to measure.
- **Start small, then scale** — set `maxResults` to 20-50 on your first run to confirm the data matches your needs, then raise it or set 0 for no limit.
- **Batch your keywords** — list many search terms at once; `maxResults` applies per term, so a 3-term run at 50 each returns up to 150 rows.
- **Read `discountPercent` correctly** — it's null (not 0) when the selling price equals MRP, so filtering on a non-null value gives you only genuinely discounted products.
- **Mix keywords and URLs** — combine Search Terms and Blinkit category/search URLs in a single run; the `searchTerm` and `sourceUrl` fields tell you which input produced each row.

### Pricing

**$1.90 per 1,000 results** — slightly under the market rate for Blinkit data, with no compute charges to track.

| Results | Estimated Cost |
|---------|----------------|
| 100 | $0.19 |
| 1,000 | $1.90 |
| 10,000 | $19.00 |
| 100,000 | $190.00 |

A "result" is any product row in the output dataset. **No compute charges — you only pay per result returned.**

### Integrations

Export data in JSON, CSV, Excel, XML, or RSS. Connect to 1,500+ apps via:

- **Zapier** / **Make** / **n8n** — Workflow automation
- **Google Sheets** — Direct spreadsheet export
- **Slack** / **Email** — Notifications on new results
- **Webhooks** — Trigger custom APIs on run completion
- **Apify API** — Full programmatic access

### Legal & Ethical Use

This actor is designed for legitimate price research, competitive analysis, and market intelligence on publicly available product listings. Users are responsible for complying with applicable laws and Blinkit's Terms of Service. Do not use extracted data for spam, harassment, or any illegal purpose. Extract only publicly visible catalog data and respect personal-data regulations.

# Actor input Schema

## `searchTerms` (type: `array`):

Products to search for on Blinkit, one per line (e.g. 'milk', 'amul butter', 'maggi noodles'). Each term runs as its own search.

## `startUrls` (type: `array`):

Paste Blinkit search or category URLs (e.g. https://blinkit.com/s/?q=milk or a category page link). Filters in the URL are applied automatically. Leave empty if you only use Search Terms above.

## `city` (type: `string`):

Blinkit prices and stock depend on the delivery area. Pick the city to scrape from — we use a real delivery location inside that city. Choose 'Custom (use coordinates below)' to enter exact coordinates instead.

## `latitude` (type: `string`):

Exact delivery latitude (e.g. 28.6139). Only used when Delivery City is set to 'Custom'. Find coordinates by right-clicking a spot in Google Maps.

## `longitude` (type: `string`):

Exact delivery longitude (e.g. 77.2090). Only used when Delivery City is set to 'Custom'. Find coordinates by right-clicking a spot in Google Maps.

## `maxResults` (type: `integer`):

Maximum number of products to collect for each search term or URL. Set to 0 for no limit. Tip: start with 20-50 to test, then increase.

## Actor input object example

```json
{
  "searchTerms": [
    "milk"
  ],
  "startUrls": [],
  "city": "delhi",
  "maxResults": 100
}
```

# Actor output Schema

## `products` (type: `string`):

Table of Blinkit products with name, brand, price, MRP, discount, pack size, and availability.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchTerms": [
        "milk"
    ],
    "startUrls": [],
    "city": "delhi",
    "latitude": "",
    "longitude": "",
    "maxResults": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("solidcode/blinkit-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchTerms": ["milk"],
    "startUrls": [],
    "city": "delhi",
    "latitude": "",
    "longitude": "",
    "maxResults": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("solidcode/blinkit-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchTerms": [
    "milk"
  ],
  "startUrls": [],
  "city": "delhi",
  "latitude": "",
  "longitude": "",
  "maxResults": 100
}' |
apify call solidcode/blinkit-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=solidcode/blinkit-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Blinkit Scraper",
        "description": "[💰 $1.9 / 1K] Extract product prices, discounts, pack sizes, and availability from Blinkit, India's instant-grocery service. Search by keyword or URL and set a delivery location for accurate local pricing.",
        "version": "1.0",
        "x-build-id": "wHuEIoo41TKxoHfC3"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/solidcode~blinkit-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-solidcode-blinkit-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/solidcode~blinkit-scraper/runs": {
            "post": {
                "operationId": "runs-sync-solidcode-blinkit-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/solidcode~blinkit-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-solidcode-blinkit-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "searchTerms": {
                        "title": "Search Terms",
                        "type": "array",
                        "description": "Products to search for on Blinkit, one per line (e.g. 'milk', 'amul butter', 'maggi noodles'). Each term runs as its own search.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "Blinkit URLs",
                        "type": "array",
                        "description": "Paste Blinkit search or category URLs (e.g. https://blinkit.com/s/?q=milk or a category page link). Filters in the URL are applied automatically. Leave empty if you only use Search Terms above.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "city": {
                        "title": "Delivery City",
                        "enum": [
                            "delhi",
                            "mumbai",
                            "bangalore",
                            "hyderabad",
                            "chennai",
                            "kolkata",
                            "pune",
                            "ahmedabad",
                            "gurgaon",
                            "noida",
                            "custom"
                        ],
                        "type": "string",
                        "description": "Blinkit prices and stock depend on the delivery area. Pick the city to scrape from — we use a real delivery location inside that city. Choose 'Custom (use coordinates below)' to enter exact coordinates instead.",
                        "default": "delhi"
                    },
                    "latitude": {
                        "title": "Latitude",
                        "type": "string",
                        "description": "Exact delivery latitude (e.g. 28.6139). Only used when Delivery City is set to 'Custom'. Find coordinates by right-clicking a spot in Google Maps."
                    },
                    "longitude": {
                        "title": "Longitude",
                        "type": "string",
                        "description": "Exact delivery longitude (e.g. 77.2090). Only used when Delivery City is set to 'Custom'. Find coordinates by right-clicking a spot in Google Maps."
                    },
                    "maxResults": {
                        "title": "Max Results Per Search",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of products to collect for each search term or URL. Set to 0 for no limit. Tip: start with 20-50 to test, then increase.",
                        "default": 100
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
