# Company Domain Finder (`automation-lab/company-domain-finder`) Actor

🔎 Find likely official website domains for company names in bulk. Includes confidence scores, source snippets, citations, and alternatives.

- **URL**: https://apify.com/automation-lab/company-domain-finder.md
- **Developed by:** [Stas Persiianenko](https://apify.com/automation-lab) (community)
- **Categories:** Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.02 / 1,000 result extracteds

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
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

## Company Domain Finder

Find likely official website domains for company names in bulk.

Use this Apify Actor when you have a list of company names and need clean website domains for lead enrichment, CRM cleanup, outbound prospecting, or data matching workflows.

### What does Company Domain Finder do?

Company Domain Finder searches public web results for each company name and returns the most likely official website domain.

It is designed for bulk workflows where you need a practical domain match plus evidence.

For every company, the Actor can return:

- 🏢 Original company name
- 🌐 Likely official domain
- 🔗 Website URL
- 📊 Confidence score
- ✅ Match status
- 🧾 Search result title
- 📝 Search snippet
- 📌 Citation/source URL
- 🧠 Matched hints used for scoring
- 🔁 Alternative domain candidates

### Who is it for?

This Actor is useful for teams that maintain company lists.

#### Sales teams

Use it to turn account names into domains before enrichment, outreach, or routing.

#### RevOps teams

Use it to normalize CRM records where the company name exists but the website field is blank.

#### Recruiting teams

Use it to resolve employer names into company websites for sourcing and market maps.

#### Data teams

Use it to add a domain key before deduplication, joining, or entity resolution.

#### Agencies

Use it to clean prospect lists before campaign setup.

### Why use it?

Company names are often messy.

A CRM might contain `Open AI`, `OpenAI Inc`, or `OpenAI, L.L.C.`.

A spreadsheet might contain regional subsidiaries, abbreviations, or old names.

This Actor gives you a repeatable way to find a likely official domain and inspect why it was chosen.

### How it works

The Actor builds a search query for each company.

It requests public Bing search result HTML.

It parses organic result blocks.

It filters obvious directories and social platforms.

It scores candidate domains using:

- Company-name tokens in the domain
- Company-name tokens in the title or snippet
- Official website wording
- Optional country hints
- Optional domain hints
- Search result rank
- Directory/profile penalties

The best candidate is saved as the company match.

### Data output table

| Field | Type | Description |
| --- | --- | --- |
| `companyName` | string | Original company name from input |
| `query` | string | Search query used |
| `country` | string or null | Optional country hint |
| `domainHint` | string or null | Optional domain hint |
| `domain` | string or null | Likely official domain |
| `websiteUrl` | string or null | Likely website URL |
| `confidence` | number | 0-100 confidence score |
| `status` | string | `matched`, `low_confidence`, `not_found`, or `error` |
| `sourceTitle` | string or null | Search result title used as evidence |
| `sourceSnippet` | string or null | Search result snippet used as evidence |
| `sourceUrl` | string or null | Result URL used as source |
| `citationUrl` | string or null | Display citation from Bing when present |
| `matchedHints` | array | Signals used for scoring |
| `alternatives` | array | Optional alternative candidates |
| `errorMessage` | string | Error details for failed lookups |
| `searchedAt` | string | ISO timestamp |

### How much does it cost to find company domains?

The Actor uses pay-per-event pricing.

There is a small run start charge and a per-company lookup charge.

The formula-derived launch BRONZE price is about $0.04 per 1,000 company lookups, plus a small start fee, before any future enrichment features are added.

You only pay for lookup results that are saved.

### Input

Provide company names in the `companies` field.

Use objects with at least a `name` field:

```json
{
  "companies": [
    { "name": "OpenAI" },
    { "name": "Stripe" },
    { "name": "Wise" }
  ]
}
````

Add hints when names are ambiguous:

```json
{
  "companies": [
    { "name": "Wise", "country": "United Kingdom", "domainHint": "wise.com" },
    { "name": "Canva", "country": "Australia" }
  ],
  "maxResultsPerCompany": 6,
  "minConfidence": 45,
  "includeAlternatives": true
}
```

### Input fields

#### companies

A list of company objects. Each object must include a `name` field.

Objects support:

- `name`
- `country`
- `domainHint`

#### maxResultsPerCompany

How many search results to inspect per company.

The default is `6`.

#### minConfidence

Minimum score required to mark a domain as matched.

The default is `45`.

#### includeAlternatives

Set to `true` to include fallback candidate domains.

#### useApifyProxy

Direct HTTP is used by default to control costs.

Enable proxy only if your run is blocked.

### Output example

```json
{
  "companyName": "OpenAI",
  "query": "\"OpenAI\" official website",
  "country": null,
  "domainHint": null,
  "domain": "openai.com",
  "websiteUrl": "https://openai.com/",
  "confidence": 94,
  "status": "matched",
  "sourceTitle": "OpenAI",
  "sourceSnippet": "Creating safe AGI that benefits all of humanity.",
  "sourceUrl": "https://openai.com/",
  "citationUrl": "https://openai.com",
  "matchedHints": ["domain matches openai", "title/snippet matches openai"],
  "searchedAt": "2026-06-05T00:00:00.000Z"
}
```

### How to run

1. Open the Actor on Apify.
2. Paste company names into `companies`.
3. Keep the default confidence threshold for your first run.
4. Start the Actor.
5. Export results as JSON, CSV, Excel, or API data.

### Tips for better matches

Use official legal or brand names where possible.

Add a country hint for generic names.

Add a domain hint when you already know part of the domain.

Raise `minConfidence` when you prefer fewer but cleaner matches.

Lower `minConfidence` when you want tentative candidates for manual review.

Keep `includeAlternatives` enabled during QA or data cleanup.

### Common use cases

#### CRM cleanup

Find missing website fields from account names.

#### Lead enrichment

Resolve company domains before email or contact enrichment.

#### Account matching

Use the domain as a stable key across tools.

#### Market mapping

Build company-domain datasets for industries, regions, or event attendee lists.

#### Duplicate detection

Group company records that resolve to the same domain.

### Integrations

#### Google Sheets

Export CSV and import domains into a sheet for manual review.

#### HubSpot

Use `domain` or `websiteUrl` to update company properties.

#### Salesforce

Join results back to Accounts using the original `companyName`.

#### Clay or enrichment tools

Use the domain as the next enrichment key.

#### Data warehouses

Load the dataset through the Apify API into BigQuery, Snowflake, or Postgres.

### API usage

#### Node.js

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

const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('automation-lab/company-domain-finder').call({
  companies: [{ name: 'OpenAI' }, { name: 'Stripe' }],
});
console.log(run.defaultDatasetId);
```

#### Python

```python
from apify_client import ApifyClient

client = ApifyClient('MY-APIFY-TOKEN')
run = client.actor('automation-lab/company-domain-finder').call(
    run_input={'companies': [{'name': 'OpenAI'}, {'name': 'Stripe'}]}
)
print(run['defaultDatasetId'])
```

#### cURL

```bash
curl -X POST 'https://api.apify.com/v2/acts/automation-lab~company-domain-finder/runs?token=MY-APIFY-TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{"companies":[{"name":"OpenAI"},{"name":"Stripe"}]}'
```

### MCP integration

Use this Actor from Claude Desktop, Claude Code, or other MCP clients through Apify MCP.

MCP URL:

```text
https://mcp.apify.com/?tools=automation-lab/company-domain-finder
```

Claude Code setup:

```bash
claude mcp add apify-company-domain-finder https://mcp.apify.com/?tools=automation-lab/company-domain-finder
```

Claude Desktop JSON config:

```json
{
  "mcpServers": {
    "apify-company-domain-finder": {
      "url": "https://mcp.apify.com/?tools=automation-lab/company-domain-finder"
    }
  }
}
```

Example prompts:

- "Find official domains for these 50 company names."
- "Resolve this event attendee company list and return a CSV."
- "Which of these CRM accounts have low-confidence domain matches?"

### Reliability notes

The Actor uses public search result pages.

Search engines can change result layouts.

The output includes source evidence so you can audit matches.

For very ambiguous company names, use country and domain hints.

### Limitations

This Actor does not verify domain ownership through a paid data provider.

It does not promise email addresses or phone numbers.

It does not log into websites.

It does not bypass private data walls.

It returns the best public-search candidate.

### Legality

This Actor works with public search result snippets and public website URLs.

You are responsible for using the output according to applicable laws, platform terms, and your own compliance requirements.

Do not use the output for spam or unlawful outreach.

### Troubleshooting

#### Why is the status `low_confidence`?

The Actor found a candidate but its score was below your `minConfidence` threshold.

Review `alternatives` and lower the threshold if the candidate is acceptable.

#### Why is the domain null?

The company may be ambiguous, unavailable in public results, or blocked by directory/social filtering.

Try adding a country or domain hint.

#### Should I enable proxy?

Only enable proxy if direct requests fail or return no results unexpectedly.

Direct HTTP is cheaper and is the default.

### FAQ

#### Can I upload thousands of companies?

Yes, but start with a small test batch to review matching quality.

#### Does it return social links?

The first version focuses on domains. It records matched hints from search evidence when present.

#### Does it work for subsidiaries?

Often, but hints improve accuracy for subsidiaries and regional entities.

#### Can I use the result for deduplication?

Yes. The `domain` field is designed to be a practical matching key.

### Related scrapers

You may also find these automation-lab Actors useful:

- https://apify.com/automation-lab/google-maps-scraper
- https://apify.com/automation-lab/company-enrichment-tool
- https://apify.com/automation-lab/contact-info-scraper
- https://apify.com/automation-lab/b2b-leads-finder

### Changelog

#### 0.1

Initial build for bulk company-name to domain matching.

### Support

If a result looks wrong, rerun with `includeAlternatives` enabled and provide the company name, country hint, and candidate output when reporting the issue.

# Actor input Schema

## `companies` (type: `array`):

Company names to resolve to likely official website domains. Use plain strings or objects with name, country, and domainHint.

## `maxResultsPerCompany` (type: `integer`):

How many Bing results to inspect for each company. Higher values may improve fallback matches but use more requests.

## `minConfidence` (type: `integer`):

Minimum confidence score required to mark a domain as matched. Lower this if you prefer more tentative matches.

## `includeAlternatives` (type: `boolean`):

Include up to 5 candidate domains with scores for each company.

## `useApifyProxy` (type: `boolean`):

Enable only if direct requests are blocked in your run. Default direct HTTP keeps costs low.

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

Optional Apify Proxy configuration used when Use Apify Proxy is enabled.

## Actor input object example

```json
{
  "companies": [
    {
      "name": "OpenAI"
    },
    {
      "name": "Stripe",
      "country": "United States"
    },
    {
      "name": "Wise",
      "country": "United Kingdom",
      "domainHint": "wise.com"
    }
  ],
  "maxResultsPerCompany": 6,
  "minConfidence": 45,
  "includeAlternatives": true,
  "useApifyProxy": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (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 = {
    "companies": [
        {
            "name": "OpenAI"
        },
        {
            "name": "Stripe",
            "country": "United States"
        },
        {
            "name": "Wise",
            "country": "United Kingdom",
            "domainHint": "wise.com"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("automation-lab/company-domain-finder").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 = {
    "companies": [
        { "name": "OpenAI" },
        {
            "name": "Stripe",
            "country": "United States",
        },
        {
            "name": "Wise",
            "country": "United Kingdom",
            "domainHint": "wise.com",
        },
    ],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("automation-lab/company-domain-finder").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 '{
  "companies": [
    {
      "name": "OpenAI"
    },
    {
      "name": "Stripe",
      "country": "United States"
    },
    {
      "name": "Wise",
      "country": "United Kingdom",
      "domainHint": "wise.com"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call automation-lab/company-domain-finder --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=automation-lab/company-domain-finder",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Company Domain Finder",
        "description": "🔎 Find likely official website domains for company names in bulk. Includes confidence scores, source snippets, citations, and alternatives.",
        "version": "0.1",
        "x-build-id": "3RZZIxDslhfhiFAAO"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automation-lab~company-domain-finder/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automation-lab-company-domain-finder",
                "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/automation-lab~company-domain-finder/runs": {
            "post": {
                "operationId": "runs-sync-automation-lab-company-domain-finder",
                "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/automation-lab~company-domain-finder/run-sync": {
            "post": {
                "operationId": "run-sync-automation-lab-company-domain-finder",
                "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",
                "required": [
                    "companies"
                ],
                "properties": {
                    "companies": {
                        "title": "Company names",
                        "type": "array",
                        "description": "Company names to resolve to likely official website domains. Use plain strings or objects with name, country, and domainHint.",
                        "items": {
                            "type": "object",
                            "required": [
                                "name"
                            ],
                            "properties": {
                                "name": {
                                    "type": "string",
                                    "title": "Company name",
                                    "description": "Company name to resolve."
                                },
                                "country": {
                                    "type": "string",
                                    "title": "Country hint",
                                    "description": "Optional country or region to disambiguate the company."
                                },
                                "domainHint": {
                                    "type": "string",
                                    "title": "Domain hint",
                                    "description": "Optional known domain or partial domain hint."
                                }
                            }
                        }
                    },
                    "maxResultsPerCompany": {
                        "title": "Search results per company",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "How many Bing results to inspect for each company. Higher values may improve fallback matches but use more requests.",
                        "default": 6
                    },
                    "minConfidence": {
                        "title": "Minimum confidence",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Minimum confidence score required to mark a domain as matched. Lower this if you prefer more tentative matches.",
                        "default": 45
                    },
                    "includeAlternatives": {
                        "title": "Include alternative candidates",
                        "type": "boolean",
                        "description": "Include up to 5 candidate domains with scores for each company.",
                        "default": true
                    },
                    "useApifyProxy": {
                        "title": "Use Apify Proxy",
                        "type": "boolean",
                        "description": "Enable only if direct requests are blocked in your run. Default direct HTTP keeps costs low.",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional Apify Proxy configuration used when Use Apify Proxy is enabled."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
