# GoodRx Drug Prices Scraper — No Login Required (`crowdpull/goodrx-drug-prices-scraper`) Actor

Extract GoodRx prescription price comparison data by drug and ZIP. No login or cookies needed. Supports pickup and mail-order prices, pharmacy filters, retries, diagnostics, and optional coupon fields.

- **URL**: https://apify.com/crowdpull/goodrx-drug-prices-scraper.md
- **Developed by:** [Crowd Pull](https://apify.com/crowdpull) (community)
- **Categories:** E-commerce, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $60.00 / 1,000 goodrx price pages

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## GoodRx Drug Prices Scraper

Compare GoodRx prescription prices across nearby pharmacies by drug, ZIP, form, dosage, quantity, radius, sort order, and pickup or mail-order mode. The actor extracts structured pharmacy offer rows for price monitoring, prescription price intelligence, and local pharmacy comparison workflows.

This actor uses a real browser because GoodRx renders the price list inside a protected Next.js page. It does not call private partner APIs, does not sign in, and does not submit any SMS, email, insurance, prescription-transfer, or order flows.

### Features

- Search one or many drugs across one or many US ZIP codes.
- Compare pickup pharmacies, mail-order offers, or both.
- Extract coupon price, retail/list price, GoodRx Gold price when available, distance, address, and deep links.
- Filter emitted rows by pharmacy chain after extraction.
- Retry blocked or wrong-location pages with fresh browser and proxy sessions.
- Save run summaries, normalized search specs, failed targets, and drug monographs to key-value storage.
- Optionally open discovered printable coupon pages and extract public coupon fields.

### Inputs

- `drugNames`: Drug names such as `atorvastatin`, `Lipitor`, or `Adderall XR`.
- `startUrls`: Direct GoodRx drug URLs, such as `https://www.goodrx.com/atorvastatin`.
- `zips`: One or more US ZIP codes. The actor sets the GoodRx location cookie before loading each price page.
- `form`, `dosage`, `quantity`, `radius`, `sortBy`, `deliveryType`: GoodRx price-filter controls.
- `pharmacyChains`: Optional post-extraction chain filter.
- `resolveAutocomplete`: Optional GoodRx autocomplete resolution. It is off by default to reduce extra protected-page navigation.
- `maxAttemptsPerTarget`: Retries blocked or wrong-location pages with a fresh browser and proxy session.
- `includeCoupons`: When enabled, opens discovered printable coupon URLs only and extracts public BIN/PCN/Group/Member ID fields.
- `proxyConfig`: US residential proxy settings. GoodRx commonly gates datacenter or non-US traffic.

#### Example Input

```json
{
  "drugNames": ["atorvastatin"],
  "zips": ["94110"],
  "quantity": 30,
  "radius": 10,
  "sortBy": "lowest_price",
  "deliveryType": "pickup",
  "maxOffersPerDrugZip": 10,
  "maxAttemptsPerTarget": 3,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "US"
  }
}
````

#### Multi-ZIP Example

```json
{
  "drugNames": ["atorvastatin", "metformin"],
  "zips": ["94110", "10001", "60614"],
  "deliveryType": "both",
  "maxOffersPerDrugZip": 5,
  "includeCoupons": false
}
```

### Output

Each pharmacy offer row includes:

- Drug input, resolved slug, canonical drug name, ZIP, delivery type
- Pharmacy chain, store name, address, distance
- GoodRx coupon price, retail/list price, savings percent, Gold price when surfaced
- Printable coupon URL and optional coupon fields
- GoodRx pharmacy deep link and raw audit text

Run metadata is saved to the default key-value store under `SUMMARY`, `SEARCH_SPECS`, `FAILED_TARGETS`, and `DRUG_MONOGRAPHS`.

#### Example Output

```json
{
  "type": "pharmacy_offer",
  "source": "goodrx",
  "status": "ok",
  "drugInput": "atorvastatin",
  "canonicalDrugName": "atorvastatin",
  "zip": "94110",
  "deliveryType": "pickup",
  "pharmacyChain": "Costco",
  "storeName": "Costco Pharmacy",
  "address": "450 10th St, San Francisco, CA 94103",
  "distanceMiles": 0.8,
  "couponPriceUsd": 11.52,
  "couponPriceText": "$11.52",
  "listPriceUsd": 39.99,
  "listPriceText": "$39.99",
  "savingsPercent": 71,
  "couponUrl": "https://www.goodrx.com/...",
  "pharmacyDeepLink": "https://www.goodrx.com/atorvastatin",
  "quantity": 30,
  "radiusMiles": 10,
  "scrapedAt": "2026-06-01T06:49:58.000Z"
}
```

### Pricing

Primary charge: $70 per 1,000 GoodRx price pages. A price page is one drug, one ZIP code, and one delivery mode. Pharmacy offer rows are charged separately at $2.50 per 1,000 emitted rows. Optional printable coupon extraction is charged only when enabled.

Diagnostic rows for blocked pages, ambiguous names, no-offer pages, or navigation failures are not charged as successful price pages.

### Limitations

- GoodRx may change prices, availability, filters, and rendered page payloads without notice.
- This actor depends on browser rendering and US residential proxy quality, so large jobs should keep concurrency low.
- It does not verify prescriptions, insurance eligibility, pharmacy inventory, checkout totals, or whether a coupon will be accepted at the counter.
- It does not sign in to GoodRx accounts or submit SMS, email, prescription-transfer, refill, or purchase flows.

### Notes

The actor parses both visible price cards and GoodRx's rendered Next.js payload, then rejects Companion-only upsells and wrong-location pages. GoodRx prices can change and may vary by exact drug, form, dosage, quantity, ZIP, pharmacy, insurance status, and account state. Treat actor output as price-comparison data, not medical or pharmacy advice. Users should verify final price and medication details with the pharmacy.

# Actor input Schema

## `drugNames` (type: `array`):

Drug names to price. Brand and generic names are kept distinct because GoodRx displays different pages for each.

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

Optional direct GoodRx drug page URLs such as https://www.goodrx.com/atorvastatin. Existing URL params are preserved and can be overridden by the inputs below.

## `zips` (type: `array`):

US ZIP codes used for GoodRx location and nearby pharmacy distance calculations.

## `form` (type: `string`):

GoodRx form slug or plain text, e.g. tablet, capsule, extended-release-tablet, oral-solution, inhaler.

## `dosage` (type: `string`):

GoodRx dosage slug or plain text, e.g. 20mg, 1mg/ml, 100mcg. The actor normalizes spaces, slashes, and decimals.

## `quantity` (type: `integer`):

Prescription quantity. GoodRx may clamp very large quantities to the page's allowed maximum.

## `radius` (type: `integer`):

Search radius in miles.

## `sortBy` (type: `string`):

GoodRx price-list sort order.

## `deliveryType` (type: `string`):

Pickup pharmacies, mail-order offers, or both.

## `pharmacyChains` (type: `array`):

Optional chain-name filter applied after extraction, e.g. Costco, Walgreens, Walmart.

## `resolveAutocomplete` (type: `boolean`):

Try GoodRx in-page autocomplete before pricing typed drug names. Leave off for lower block risk when drug names already match GoodRx slugs.

## `includeCoupons` (type: `boolean`):

Open only discovered printable coupon URLs and extract public BIN/PCN/Group/Member ID fields. Does not submit SMS, email, signup, transfer, or order flows.

## `maxOffersPerDrugZip` (type: `integer`):

Maximum pharmacy offer rows emitted for each drug/ZIP/delivery-type page.

## `maxAttemptsPerTarget` (type: `integer`):

Retry a blocked or wrong-location page with a fresh browser and proxy session.

## `maxConcurrency` (type: `integer`):

Number of GoodRx pages processed in parallel. Keep low because GoodRx is browser-bound and proxy-sensitive.

## `delayMs` (type: `integer`):

Base delay between browser page runs in milliseconds.

## `navigationTimeoutSecs` (type: `integer`):

Per-page browser navigation timeout.

## `saveDebugHtml` (type: `boolean`):

Save blocked, failed, or no-price page HTML and screenshots to the default key-value store.

## `proxyConfig` (type: `object`):

Residential US proxies are strongly recommended for GoodRx. Datacenter IPs often produce location gates or bot checks.

## Actor input object example

```json
{
  "drugNames": [
    "atorvastatin"
  ],
  "startUrls": [
    {
      "url": "https://www.goodrx.com/atorvastatin"
    }
  ],
  "zips": [
    "94110"
  ],
  "quantity": 30,
  "radius": 10,
  "sortBy": "lowest_price",
  "deliveryType": "pickup",
  "resolveAutocomplete": false,
  "includeCoupons": false,
  "maxOffersPerDrugZip": 25,
  "maxAttemptsPerTarget": 3,
  "maxConcurrency": 1,
  "delayMs": 3000,
  "navigationTimeoutSecs": 45,
  "saveDebugHtml": false,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

## `summary` (type: `string`):

No description

## `failedTargets` (type: `string`):

No description

# 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 = {
    "drugNames": [
        "atorvastatin"
    ],
    "startUrls": [
        {
            "url": "https://www.goodrx.com/atorvastatin"
        }
    ],
    "zips": [
        "94110"
    ],
    "quantity": 30,
    "radius": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("crowdpull/goodrx-drug-prices-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 = {
    "drugNames": ["atorvastatin"],
    "startUrls": [{ "url": "https://www.goodrx.com/atorvastatin" }],
    "zips": ["94110"],
    "quantity": 30,
    "radius": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("crowdpull/goodrx-drug-prices-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 '{
  "drugNames": [
    "atorvastatin"
  ],
  "startUrls": [
    {
      "url": "https://www.goodrx.com/atorvastatin"
    }
  ],
  "zips": [
    "94110"
  ],
  "quantity": 30,
  "radius": 10
}' |
apify call crowdpull/goodrx-drug-prices-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "GoodRx Drug Prices Scraper — No Login Required",
        "description": "Extract GoodRx prescription price comparison data by drug and ZIP. No login or cookies needed. Supports pickup and mail-order prices, pharmacy filters, retries, diagnostics, and optional coupon fields.",
        "version": "0.1",
        "x-build-id": "E6XjQRqST0mKvkx1T"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crowdpull~goodrx-drug-prices-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crowdpull-goodrx-drug-prices-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/crowdpull~goodrx-drug-prices-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crowdpull-goodrx-drug-prices-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/crowdpull~goodrx-drug-prices-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crowdpull-goodrx-drug-prices-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": {
                    "drugNames": {
                        "title": "Drug Names",
                        "type": "array",
                        "description": "Drug names to price. Brand and generic names are kept distinct because GoodRx displays different pages for each.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "GoodRx Drug URLs",
                        "type": "array",
                        "description": "Optional direct GoodRx drug page URLs such as https://www.goodrx.com/atorvastatin. Existing URL params are preserved and can be overridden by the inputs below.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL",
                                    "description": "Direct GoodRx drug page URL."
                                }
                            }
                        }
                    },
                    "zips": {
                        "title": "ZIP Codes",
                        "type": "array",
                        "description": "US ZIP codes used for GoodRx location and nearby pharmacy distance calculations.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "form": {
                        "title": "Form",
                        "type": "string",
                        "description": "GoodRx form slug or plain text, e.g. tablet, capsule, extended-release-tablet, oral-solution, inhaler."
                    },
                    "dosage": {
                        "title": "Dosage",
                        "type": "string",
                        "description": "GoodRx dosage slug or plain text, e.g. 20mg, 1mg/ml, 100mcg. The actor normalizes spaces, slashes, and decimals."
                    },
                    "quantity": {
                        "title": "Quantity",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Prescription quantity. GoodRx may clamp very large quantities to the page's allowed maximum."
                    },
                    "radius": {
                        "title": "Radius Miles",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Search radius in miles.",
                        "default": 10
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "lowest_price",
                            "distance",
                            "pharmacy_name"
                        ],
                        "type": "string",
                        "description": "GoodRx price-list sort order.",
                        "default": "lowest_price"
                    },
                    "deliveryType": {
                        "title": "Delivery Type",
                        "enum": [
                            "pickup",
                            "mail_order",
                            "both"
                        ],
                        "type": "string",
                        "description": "Pickup pharmacies, mail-order offers, or both.",
                        "default": "pickup"
                    },
                    "pharmacyChains": {
                        "title": "Pharmacy Chains",
                        "type": "array",
                        "description": "Optional chain-name filter applied after extraction, e.g. Costco, Walgreens, Walmart.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "resolveAutocomplete": {
                        "title": "Resolve Names With Autocomplete",
                        "type": "boolean",
                        "description": "Try GoodRx in-page autocomplete before pricing typed drug names. Leave off for lower block risk when drug names already match GoodRx slugs.",
                        "default": false
                    },
                    "includeCoupons": {
                        "title": "Extract Printable Coupon Fields",
                        "type": "boolean",
                        "description": "Open only discovered printable coupon URLs and extract public BIN/PCN/Group/Member ID fields. Does not submit SMS, email, signup, transfer, or order flows.",
                        "default": false
                    },
                    "maxOffersPerDrugZip": {
                        "title": "Max Offers Per Drug and ZIP",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Maximum pharmacy offer rows emitted for each drug/ZIP/delivery-type page.",
                        "default": 25
                    },
                    "maxAttemptsPerTarget": {
                        "title": "Max Attempts Per Target",
                        "minimum": 1,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Retry a blocked or wrong-location page with a fresh browser and proxy session.",
                        "default": 3
                    },
                    "maxConcurrency": {
                        "title": "Max Concurrency",
                        "minimum": 1,
                        "maximum": 3,
                        "type": "integer",
                        "description": "Number of GoodRx pages processed in parallel. Keep low because GoodRx is browser-bound and proxy-sensitive.",
                        "default": 1
                    },
                    "delayMs": {
                        "title": "Delay Between Pages",
                        "minimum": 0,
                        "maximum": 60000,
                        "type": "integer",
                        "description": "Base delay between browser page runs in milliseconds.",
                        "default": 3000
                    },
                    "navigationTimeoutSecs": {
                        "title": "Navigation Timeout Seconds",
                        "minimum": 15,
                        "maximum": 180,
                        "type": "integer",
                        "description": "Per-page browser navigation timeout.",
                        "default": 45
                    },
                    "saveDebugHtml": {
                        "title": "Save Debug HTML",
                        "type": "boolean",
                        "description": "Save blocked, failed, or no-price page HTML and screenshots to the default key-value store.",
                        "default": false
                    },
                    "proxyConfig": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Residential US proxies are strongly recommended for GoodRx. Datacenter IPs often produce location gates or bot checks.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "US"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
