# DigiKey Product Scraper — MPN, Pricing Tiers, Stock & Specs (`crawloop/digikey-product-scraper`) Actor

DigiKey product scraper for MPN lookup, PDP enrichment, and category listings. Extract quantity-break pricing, stock, lead time, attributes, RoHS/REACH/ECCN, datasheets and substitutes. Keyword exact-match, filter pagination, sticky residential proxy — fast HTTP, no browser.

- **URL**: https://apify.com/crawloop/digikey-product-scraper.md
- **Developed by:** [Andrej Kiva](https://apify.com/crawloop) (community)
- **Categories:** E-commerce, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 1,000 digikey product details

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/docs.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## DigiKey Product Scraper — MPN, Pricing Tiers, Stock & Specs

> **Disclaimer:** Unofficial Actor for publicly accessible DigiKey product and catalog pages. **DigiKey** and related names are trademarks of Digi-Key Electronics. Not affiliated with, sponsored by, or endorsed by Digi-Key Electronics. Provided for informational and research purposes only. You are responsible for complying with applicable laws and DigiKey terms of use.

Scrape **DigiKey electronic components** by **product URL**, **manufacturer part number (MPN)**, **keyword**, or **category filter page**. Export **quantity-break pricing**, **stock**, **lead time**, **technical attributes**, **RoHS / REACH / ECCN / HTSUS**, **datasheets**, **images**, and **substitutes** as clean JSON — built for **BOM enrichment**, **price monitoring**, **component research**, and **procurement workflows**.

---

### Key Features

- **Product detail enrichment** — full DigiKey PDP fields from product URLs
- **MPN / keyword resolution** — exact-match search → automatic PDP scrape
- **Category / filter listings** — crawl DigiKey filter pages with pagination (25 products per page)
- **Optional PDP enrich from listings** — turn listing rows into full product records
- **Pricing & packaging** — Cut Tape, Tape & Reel, Digi-Reel tiers with MOQ and fee messages
- **Compliance block** — RoHS, REACH, ECCN, HTSUS, MSL when present on the PDP
- **Substitutes & documents** — cross-references, datasheets, media (toggleable)
- **Fast HTTP scraping** — `curl_cffi` Chrome TLS impersonation; no headless browser
- **Sticky residential proxy** — Apify RESIDENTIAL US sessions with warmup and challenge rotation

---

### Use Cases

| Use case | What you get | Why it helps |
| :--- | :--- | :--- |
| **BOM enrichment** | MPN → DigiKey PNs, specs, datasheet | Fill ERP / PLM component libraries |
| **Price monitoring** | Quantity-break tables by packaging | Track unit cost vs volume |
| **Stock & lead time** | Available qty, standard lead time, backorder flag | Sourcing and shortage checks |
| **Compliance screening** | RoHS / REACH / ECCN / HTSUS | Export-control and green status |
| **Category harvest** | Filter listing rows at scale | Build MCU / connector / passive shortlists |

---

### When to use this Actor

- DigiKey **product detail** enrichment from known URLs or Digi-Key part numbers
- **MPN lookup** when you need the matching DigiKey PDP (exact match → full specs)
- **Filter / category crawls** for listing-level price and stock without opening every PDP
- **Procurement research** — packaging options, MOQ, Digi-Reel fees, substitute parts

### When not to use this Actor

- **Official DigiKey Partner / Product API** workflows that require DigiKey API keys
- **Real-time cart / checkout / quote** automation
- **Other electronics distributors** — this Actor covers DigiKey only
- **Bulk PDF file download** — returns datasheet URLs in the dataset; does not store PDF binaries in the Key-Value Store by default

---

### Input Parameters

| Parameter | Type | Default | Description |
| :--- | :--- | :--- | :--- |
| `productUrls` | Array | — | DigiKey product detail page URLs |
| `keywords` | Array | — | Keywords or MPNs (exact-match → PDP) |
| `filterUrls` | Array | — | DigiKey filter / category listing URLs |
| `maxItems` | Integer | `50` | Maximum dataset items per run |
| `maxPages` | Integer | `1` | Max filter pages per `filterUrls` entry (1–40) |
| `enrichListingProducts` | Boolean | `false` | Fetch full PDP for each listing row |
| `includeSubstitutes` | Boolean | `true` | Include substitute / cross-reference rows |
| `includeDocuments` | Boolean | `true` | Include documents and media links |
| `includeSuggestions` | Boolean | `true` | Emit suggestion record when keyword has no exact match |
| `requestDelaySecs` | Number | `1.0` | Delay between requests on the sticky session |
| `proxyConfiguration` | Object | Residential US | Apify Proxy — sticky RESIDENTIAL recommended |

#### Input Example — PDP + MPN

```json
{
  "productUrls": [
    "DIGIKEY_PDP_URL"
  ],
  "keywords": ["STM32F407VGT6"],
  "maxItems": 10,
  "includeSubstitutes": true,
  "includeDocuments": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "US"
  }
}
````

#### Input Example — category listing

```json
{
  "filterUrls": [
    "DIGIKEY_FILTER_URL"
  ],
  "maxItems": 500,
  "maxPages": 20,
  "enrichListingProducts": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "US"
  }
}
```

***

### Output Format

Dataset records use `recordType`:

| `recordType` | Meaning |
| :--- | :--- |
| `product` | Full DigiKey product detail enrichment |
| `listing` | Filter / category table row |
| `suggestion` | Keyword with no exact match (related categories) |
| `error` | Fetch or parse failure |

#### Key product fields

| Field | Description |
| :--- | :--- |
| `productId` | DigiKey numeric product id (canonical) |
| `manufacturerProductNumber` | Manufacturer part number (MPN) |
| `manufacturer` | Brand / manufacturer name |
| `digikeyProductNumbers` | Digi-Key PNs by packaging (TR / CT / Digi-Reel) |
| `qtyAvailable` / `qtyAvailableValue` | Stock text and parsed integer |
| `standardLeadTime` | Manufacturer lead time when shown |
| `unitPrice` / `unitPriceValue` / `currency` | Primary unit price |
| `packagingOptions` | Pricing tiers, MOQ, packaging messages |
| `attributes` | Technical specifications |
| `compliance` | RoHS, REACH, ECCN, HTSUS, MSL |
| `datasheetUrl` | Primary datasheet link |
| `substitutes` | Cross-reference rows (optional) |
| `documents` / `images` | Media and document links (optional) |
| `url` | Canonical product URL |
| `scrapedAt` | ISO-8601 timestamp |

#### Output Example (abbreviated)

```json
{
  "source": "digikey",
  "recordType": "product",
  "productId": "1231577",
  "manufacturerProductNumber": "74LVC2G125DP,125",
  "manufacturer": "Nexperia USA Inc.",
  "qtyAvailable": "12,000",
  "qtyAvailableValue": 12000,
  "unitPrice": "$0.37000",
  "unitPriceValue": 0.37,
  "currency": "USD",
  "standardLeadTime": "20 Weeks",
  "packagingOptions": [
    {
      "digikeyProductNumber": "1727-5989-1-ND",
      "packaging": "Cut Tape (CT) & Digi-Reel®",
      "minOrderQuantity": 1,
      "tiers": [
        { "breakQty": "1", "unitPrice": "$0.37000", "unitPriceValue": 0.37 }
      ]
    }
  ],
  "compliance": {
    "RoHS Status": "ROHS3 Compliant",
    "ECCN": "EAR99",
    "HTSUS": "8542.39.0070"
  }
}
```

***

### Notes

- Prefer **sticky Apify RESIDENTIAL** proxies (US). Datacenter egress often hits Cloudflare challenges.
- The **numeric product id** in a DigiKey URL is canonical; the MPN slug in the path can be outdated or wrong.
- Filter pagination uses DigiKey’s encoded `s` state (`pagination.p` / `pagination.pp`), not bare `?page=` alone.
- `suggestion` and `error` rows are not billed as product/listing results.

# Actor input Schema

## `productUrls` (type: `array`):

DigiKey product detail page (PDP) URLs. The numeric product id in the path is the canonical identifier.

## `keywords` (type: `array`):

Search keywords or manufacturer part numbers. Resolved via DigiKey exact-match results, then each match is enriched from the PDP.

## `filterUrls` (type: `array`):

DigiKey filter (PLP) URLs such as /en/products/filter/.../{id}. Returns listing rows; enable Enrich listing products to also fetch full PDP data.

## `maxItems` (type: `integer`):

Stop after this many dataset items (PDP and/or listing rows).

## `maxPages` (type: `integer`):

Maximum PLP pages per filter URL (25 products per page). Uses DigiKey s-param pagination.

## `enrichListingProducts` (type: `boolean`):

When scraping filter URLs, also fetch full PDP data for each listed product.

## `includeSubstitutes` (type: `boolean`):

Include substitute / cross-reference rows from the PDP.

## `includeDocuments` (type: `boolean`):

Include datasheets, documents and media links from the PDP.

## `includeSuggestions` (type: `boolean`):

When a keyword has no exact match, push a suggestion record with related categories instead of skipping silently.

## `requestDelaySecs` (type: `number`):

Pause between HTTP requests on the same sticky session to reduce Cloudflare challenges.

## `proxyConfiguration` (type: `object`):

Apify Proxy settings. Sticky RESIDENTIAL US sessions are required for stable DigiKey access.

## Actor input object example

```json
{
  "productUrls": [
    "https://www.digikey.com/en/products/detail/nexperia-usa-inc/74LVC2G125DP-125/1231577"
  ],
  "keywords": [
    "STM32F407VGT6"
  ],
  "maxItems": 50,
  "maxPages": 1,
  "enrichListingProducts": false,
  "includeSubstitutes": true,
  "includeDocuments": true,
  "includeSuggestions": true,
  "requestDelaySecs": 1,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# 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 = {
    "productUrls": [
        "https://www.digikey.com/en/products/detail/nexperia-usa-inc/74LVC2G125DP-125/1231577"
    ],
    "keywords": [
        "STM32F407VGT6"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawloop/digikey-product-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 = {
    "productUrls": ["https://www.digikey.com/en/products/detail/nexperia-usa-inc/74LVC2G125DP-125/1231577"],
    "keywords": ["STM32F407VGT6"],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("crawloop/digikey-product-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 '{
  "productUrls": [
    "https://www.digikey.com/en/products/detail/nexperia-usa-inc/74LVC2G125DP-125/1231577"
  ],
  "keywords": [
    "STM32F407VGT6"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call crawloop/digikey-product-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "DigiKey Product Scraper — MPN, Pricing Tiers, Stock & Specs",
        "description": "DigiKey product scraper for MPN lookup, PDP enrichment, and category listings. Extract quantity-break pricing, stock, lead time, attributes, RoHS/REACH/ECCN, datasheets and substitutes. Keyword exact-match, filter pagination, sticky residential proxy — fast HTTP, no browser.",
        "version": "0.1",
        "x-build-id": "saQsxBrHGTdCUIRcr"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawloop~digikey-product-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawloop-digikey-product-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/crawloop~digikey-product-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawloop-digikey-product-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/crawloop~digikey-product-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawloop-digikey-product-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": {
                    "productUrls": {
                        "title": "Product detail URLs",
                        "type": "array",
                        "description": "DigiKey product detail page (PDP) URLs. The numeric product id in the path is the canonical identifier.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "keywords": {
                        "title": "Keywords / MPNs",
                        "type": "array",
                        "description": "Search keywords or manufacturer part numbers. Resolved via DigiKey exact-match results, then each match is enriched from the PDP.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "filterUrls": {
                        "title": "Filter / category listing URLs (optional)",
                        "type": "array",
                        "description": "DigiKey filter (PLP) URLs such as /en/products/filter/.../{id}. Returns listing rows; enable Enrich listing products to also fetch full PDP data.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max products",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Stop after this many dataset items (PDP and/or listing rows).",
                        "default": 50
                    },
                    "maxPages": {
                        "title": "Max filter pages",
                        "minimum": 1,
                        "maximum": 40,
                        "type": "integer",
                        "description": "Maximum PLP pages per filter URL (25 products per page). Uses DigiKey s-param pagination.",
                        "default": 1
                    },
                    "enrichListingProducts": {
                        "title": "Enrich listing products",
                        "type": "boolean",
                        "description": "When scraping filter URLs, also fetch full PDP data for each listed product.",
                        "default": false
                    },
                    "includeSubstitutes": {
                        "title": "Include substitutes",
                        "type": "boolean",
                        "description": "Include substitute / cross-reference rows from the PDP.",
                        "default": true
                    },
                    "includeDocuments": {
                        "title": "Include documents & media",
                        "type": "boolean",
                        "description": "Include datasheets, documents and media links from the PDP.",
                        "default": true
                    },
                    "includeSuggestions": {
                        "title": "Emit search suggestions",
                        "type": "boolean",
                        "description": "When a keyword has no exact match, push a suggestion record with related categories instead of skipping silently.",
                        "default": true
                    },
                    "requestDelaySecs": {
                        "title": "Delay between requests (seconds)",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "number",
                        "description": "Pause between HTTP requests on the same sticky session to reduce Cloudflare challenges.",
                        "default": 1
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify Proxy settings. Sticky RESIDENTIAL US sessions are required for stable DigiKey access.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
