# Special Trade Contractors Industry Email Scraper (`scrapers-hub/special-trade-contractors-industry-email-scraper`) Actor

🔍 Special Trade Contractors Industry Email Scraper pulls verified business emails from the special-trade contractors sector for faster lead generation. 🏗️ Save time, boost outreach, and improve B2B targeting—ideal for sales, marketing & recruiting. 📧

- **URL**: https://apify.com/scrapers-hub/special-trade-contractors-industry-email-scraper.md
- **Developed by:** [Scrapers Hub](https://apify.com/scrapers-hub) (community)
- **Categories:** Lead generation, Automation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.99 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

### Special Trade Contractors Industry Email Scraper 🔍

**Special Trade Contractors Industry Email Scraper** automates finding special trade contractors businesses and extracting their contact information from publicly available sources—so you can build a **trade contractor industry email database** without spending days manually researching leads. This actor helps with **special trade contractors email scraper** workflows and **subcontractor email scraper** lead lists, especially for teams targeting construction subcontractor email leads and specialty contractor lead list building. If you're a marketer, data analyst, or researcher, you can use it to quickly enrich outreach datasets with business emails, phone numbers, and social links—saving you hours of manual work.

---

### Why choose Special Trade Contractors Industry Email Scraper?

| Feature | Benefit |
| --- | --- |
| ✅ **Industry-first lead discovery** | Collects up to your target number of businesses based on a location and search term |
| ✅ **Website contact extraction** | Extracts emails (and can extract phones and social media) from business websites |
| ✅ **Reliability via resilience patterns** | Includes proxy support for large-scale scraping and operational fallbacks when websites aren’t available |
| ✅ **Structured, analysis-ready output** | Saves consistent business fields plus per-email rows using `email_found` |
| ✅ **Scale controls for volume planning** | Limits total businesses with `maxBusinesses` and lets you choose per-location vs global stopping |
| ✅ **Apify Dataset-ready results** | Streams each result into the actor dataset immediately for safer long runs |

---

### Key features

- 🎯 **Targeted industry lead mining**: Uses your `googleMapsSearchTerm` plus `googleMapsLocation` to focus on special trade contractors businesses  
- 🌐 **Website-driven contact enrichment**: Scrapes each business website to extract `scraped_emails`, `scraped_phones`, and `scraped_social_media`  
- 🛡️ **Proxy configuration support**: Uses your `proxyConfiguration` (recommended for larger batches) to help keep scraping stable  
- 🔄 **Controlled stopping logic**: Stops when it reaches your `maxBusinesses` target (globally or per location)  
- 📊 **Deduped business results**: Avoids duplicate businesses using `place_id` uniqueness while staying within your limits  
- 💾 **Real-time dataset saving**: Pushes results to the Apify dataset immediately as emails are found  
- 📬 **Email-first dataset rows**: Flattens output so you get one dataset row per email via `email_found`

---

### Input

Provide input via an `input.json` file. Example structure:

```json
{
  "googleMapsSearchTerm": "Special Trade Contractors Industry",
  "googleMapsLocation": ["New York"],
  "maxBusinesses": 5,
  "scrapeMaxBusinessesPerLocation": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
````

#### Input Fields

| Field | Required | Description |
| --- | --- | --- |
| `googleMapsSearchTerm` | Yes | Enter the business type or niche for the email scraper (prefilled with **Special Trade Contractors Industry**). |
| `googleMapsLocation` | Yes | Target geographic location(s) for lead discovery (e.g., `["Miami, Florida"]` or `["New York"]`). |
| `maxBusinesses` | No | Maximum number of businesses to target (1–1000). The scraper stops when this target is reached (default is 5). |
| `scrapeMaxBusinessesPerLocation` | No | If enabled, collects up to `maxBusinesses` results per location; if disabled, it combines all locations up to one total limit (default is `false`). |
| `proxyConfiguration` | No | Proxy settings for scraping (recommended for large-scale runs). Prefilled with `proxy support: true`. |

***

### Output

The actor saves results in the Apify **dataset** as JSON objects (one row per extracted email when emails are found).

Example dataset rows (email rows):

```json
[
  {
    "street_address": "123 Example St",
    "city": "New York",
    "zip": "10001",
    "state": "NY",
    "country_code": "US",
    "full_address": "123 Example St New York NY 10001 US",
    "website": "https://example.com",
    "avg_rating": 4.5,
    "total_reviews": 120,
    "name": "Example Special Trade Contractor",
    "place_id": "ChIJ123exampleplaceid",
    "phone": "+1 555 123 4567",
    "lat": 40.7128,
    "long": -74.006,
    "scraped_phones": ["+1 555 987 6543"],
    "scraped_social_media": ["https://www.linkedin.com/company/example/"],
    "emails_found": 2,
    "pages_scraped": 6,
    "scrape_status": "success",
    "email_found": "contact@example.com"
  }
]
```

Example dataset rows (no-website rows, only when not in email-only mode):

```json
[
  {
    "street_address": "123 Example St",
    "city": "New York",
    "zip": "10001",
    "state": "NY",
    "country_code": "US",
    "full_address": "123 Example St New York NY 10001 US",
    "website": "",
    "avg_rating": 4.2,
    "total_reviews": 35,
    "name": "Example Contractor Without Website",
    "place_id": "ChIJ456exampleplaceid",
    "phone": "+1 555 111 2222",
    "lat": 40.7131,
    "long": -74.007,
    "scraped_emails": [],
    "scraped_phones": [],
    "scraped_social_media": [],
    "emails_found": 0,
    "pages_scraped": 0,
    "scrape_status": "no_website"
  }
]
```

#### Output Fields

| Field | Type | Description |
| --- | --- | --- |
| `name` | string | Business name for the special trade contractors lead. |
| `website` | string | Business website URL (used for contact extraction). |
| `phone` | string | Phone number as returned in the business listing info. |
| `full_address` | string | Combined address string: street, city, state, zip, and country code. |
| `city` | string | City name for the business. |
| `state` | string | State/province for the business. |
| `zip` | string | ZIP/postal code. |
| `country_code` | string | Country code for the business. |
| `scraped_emails` | array | List of emails extracted from the business website (not included in the flattened email rows; instead use `email_found`). |
| `scraped_phones` | array | List of phone numbers extracted from the business website. |
| `scraped_social_media` | array | List of social media links extracted from the business website. |
| `emails_found` | number | Count of emails found on the business website. |
| `pages_scraped` | number | How many pages were processed for the website scraping job. |
| `avg_rating` | number | Average rating from the listing data. |
| `total_reviews` | number | Total number of reviews from the listing data. |
| `lat` | number | Latitude coordinate for the business. |
| `long` | number | Longitude coordinate for the business. |
| `place_id` | string | Unique identifier for the listing used for deduplication. |
| `scrape_status` | string | Scrape status such as `success` or `no_website` or `failed`. |
| `email_found` | string | **Per-row** email address (present for email rows). |
| `scrape_error` | string | Error details when the website scraping job fails or errors. |

You can export the dataset from Apify in JSON or CSV depending on your workflow needs.

***

### How to use Special Trade Contractors Industry Email Scraper (via Apify Console)

1. **Open Apify Console**\
   Log in at https://console.apify.com and open the actor page for **Special Trade Contractors Industry Email Scraper**.

2. **Set your search term**\
   In the **INPUT** section, enter `googleMapsSearchTerm`. The form is prefilled with **Special Trade Contractors Industry**.

3. **Choose your location(s)**\
   Add one or more entries in `googleMapsLocation` (for example `["New York"]`).

4. **Plan volume with `maxBusinesses`**\
   Set `maxBusinesses` to control how many business leads you want to find (default is 5; supported range in the form is 1–1000).

5. **Decide whether the limit is per location**\
   Toggle `scrapeMaxBusinessesPerLocation`:
   - `false`: one combined total limit across all locations
   - `true`: up to `maxBusinesses` results per location

6. **(Recommended) Configure proxy settings**\
   Use `proxyConfiguration` (prefilled with `proxy support: true`) for more reliable large-scale scraping.

7. **Run the actor and monitor logs**\
   Watch the execution logs for progress and status messages. The actor streams results to the dataset as emails are found.

8. **Open the dataset and export**\
   Go to the **OUTPUT** tab, open the dataset, and export results to JSON/CSV for your CRM, outreach, or analysis pipeline.

No coding required—you can build a trade contractor industry email database in minutes. ✅

***

### Advanced features & SEO optimization

- 🧰 **Engineered for special trade contractors B2B leads email** workflows: Built specifically around collecting business leads and enriching them with website contact data (emails, phones, social links).
- 🧭 **Location-aware lead discovery**: Lets you target cities/regions through `googleMapsLocation`, which is ideal for constructing HVAC contractor email scraper style datasets or electrical contractor email scraper lists by region.
- 🧠 **Email-first flattening for outreach**: Outputs one dataset row per extracted email using `email_found`, which is practical for building contractor decision maker email list files.
- 💾 **Built-in dataset safety**: Saves results immediately as it goes, so long runs are less fragile if execution stops unexpectedly.

***

### Best use cases

- 📈 **Lead generation for specialty contractors**: Build a special trade contractors email scraper lead list you can upload to outreach tools for faster campaigning.
- 🏗️ **Construction subcontractor email leads research**: Compile construction subcontractor email leads by geography and quickly compare contact coverage across regions.
- 💼 **Trade contractor prospecting email scraper**: Produce a repeatable dataset for sales development workflows targeting the trade contractor industry email database.
- 🔥 **Vertical-specific campaign lists**: Create focused exports like HVAC contractor email scraper, electrical contractor email scraper, or plumbing contractor email scraper datasets by location.
- 🧪 **Data analysts building contact coverage metrics**: Use `pages_scraped`, `emails_found`, and `scrape_status` to measure how often business websites yield valid contacts.
- 🗂️ **CRM enrichment pipelines**: Integrate dataset exports into your CRM to populate email outreach fields for commercial subcontractor email database building.
- 🧑‍💻 **Automation and internal tooling**: Feed dataset rows into custom scripts for deduping, segmentation, and campaign orchestration.

***

### Technical specifications

- **Supported Input Formats**
  - ✅ `googleMapsSearchTerm`: string
  - ✅ `googleMapsLocation`: array of strings

- **Proxy Support**
  - ✅ `proxyConfiguration` object is supported (includes `proxy support`)

- **Scale Controls**
  - ✅ `maxBusinesses` (1–1000 from the form constraints)
  - ✅ `scrapeMaxBusinessesPerLocation` to choose global vs per-location limiting

- **Retry Mechanism**
  - ✅ Resilience patterns are used to improve stability during scraping workflows (high-level handling; no implementation details exposed)

- **Dataset Structure**
  - ✅ Table view fields include: `name`, `website`, `phone`, `full_address`, `city`, `state`, `zip`, `country_code`, `scraped_emails`, `scraped_phones`, `scraped_social_media`, `emails_found`, `pages_scraped`, `avg_rating`, `total_reviews`, `lat`, `long`, `place_id`, `scrape_status`

- **Limitations**
  - ❌ If a business has no usable `website`, the actor will mark `scrape_status` as `no_website` and populate extracted contact arrays as empty (and per-email rows won’t be created).

***

### FAQ

#### What does the Special Trade Contractors Industry Email Scraper extract?

✅ It extracts business contact information including `scraped_emails`, `scraped_phones`, and `scraped_social_media` by scraping business websites referenced in the listing results.

#### How does it decide which businesses to target?

✅ It uses your `googleMapsSearchTerm` and the `googleMapsLocation` values to focus on the special trade contractors industry. It then collects up to `maxBusinesses` results based on your `scrapeMaxBusinessesPerLocation` setting.

#### Do I get one row per business or one row per email?

✅ You get **one row per extracted email** when emails are found, using the `email_found` field. The actor also provides business-level fields like `emails_found`, `pages_scraped`, and `scrape_status`.

#### Can it extract phone numbers and social media links too?

✅ Yes. When scraping websites, it can extract phones and social media profiles, saved as `scraped_phones` and `scraped_social_media`.

#### Will it save businesses that don’t have a website?

✅ It can push businesses without websites with `scrape_status` set to `no_website`, but it won’t be able to extract emails/phones/social links without a website.

#### Do I need to set up a proxy?

✅ It’s not required, but `proxyConfiguration` is included and recommended for more reliable scraping at larger scale. The form is prefilled to use Apify proxy.

#### How do I export the results for outreach or CRM use?

✅ After the run finishes, open the dataset in Apify Console and export it. The output is saved as JSON rows and you can export in CSV depending on your needs.

#### Is the actor intended for legally compliant lead sourcing?

✅ **It collects information only from publicly accessible sources.** You are responsible for following applicable laws and the platforms’ terms when using the data.

***

### Support & feature requests

If you’re using **Special Trade Contractors Industry Email Scraper** for a special trade contractors email scraper workflow and want improvements, we’d love to hear from you. 💡

- 💡 **Feature Requests**: Examples include CSV export enhancements, additional field mapping, or improved filtering and formatting for trade contractor industry email database exports.
- 📧 **Contact**: Send a message via <dataforleads@gmail.com>.

Your feedback directly shapes what we build next for Special Trade Contractors Industry Email Scraper.

***

### *Special Trade Contractors Industry Email Scraper* — Final thoughts

*Build a more complete specialty contractor lead list faster with this SEO-optimized Special Trade Contractors Industry Email Scraper—engineered for scale, structured output, and practical outreach enrichment.* 🚀

***

### Disclaimer

**This tool accesses publicly accessible sources only.** It does not access private profiles, authenticated data, or password-protected pages.

You are responsible for complying with applicable laws (including GDPR and CCPA where relevant), spam regulations, and platform terms of service. If you need help with a data removal request, contact <dataforleads@gmail.com>.

Please use Special Trade Contractors Industry Email Scraper responsibly, ethically, and for legitimate purposes only.

# Actor input Schema

## `googleMapsSearchTerm` (type: `string`):

Enter the business type or niche for email scraper (e.g., 'coffee shops', 'dentists').

## `googleMapsLocation` (type: `array`):

Target geographic location for the email scraper (e.g., 'Miami, Florida').

## `maxBusinesses` (type: `integer`):

Target number of businesses to find (1-1000). The scraper will stop when this target is reached.

## `scrapeMaxBusinessesPerLocation` (type: `boolean`):

If enabled, the scraper will collect up to `maxBusinesses` results per location. If disabled, it combines all locations up to a single total limit.

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

Proxy settings for scraping. Recommended for large-scale scraping.

## Actor input object example

```json
{
  "googleMapsSearchTerm": "Special Trade Contractors Industry",
  "googleMapsLocation": [
    "New York"
  ],
  "maxBusinesses": 5,
  "scrapeMaxBusinessesPerLocation": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# 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 = {
    "googleMapsSearchTerm": "Special Trade Contractors Industry",
    "googleMapsLocation": [
        "New York"
    ],
    "maxBusinesses": 5,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapers-hub/special-trade-contractors-industry-email-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 = {
    "googleMapsSearchTerm": "Special Trade Contractors Industry",
    "googleMapsLocation": ["New York"],
    "maxBusinesses": 5,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapers-hub/special-trade-contractors-industry-email-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 '{
  "googleMapsSearchTerm": "Special Trade Contractors Industry",
  "googleMapsLocation": [
    "New York"
  ],
  "maxBusinesses": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call scrapers-hub/special-trade-contractors-industry-email-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapers-hub/special-trade-contractors-industry-email-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Special Trade Contractors Industry Email Scraper",
        "description": "🔍 Special Trade Contractors Industry Email Scraper pulls verified business emails from the special-trade contractors sector for faster lead generation. 🏗️ Save time, boost outreach, and improve B2B targeting—ideal for sales, marketing & recruiting. 📧",
        "version": "1.0",
        "x-build-id": "uYCNlk0G30xIJXbjj"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapers-hub~special-trade-contractors-industry-email-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapers-hub-special-trade-contractors-industry-email-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/scrapers-hub~special-trade-contractors-industry-email-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapers-hub-special-trade-contractors-industry-email-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/scrapers-hub~special-trade-contractors-industry-email-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapers-hub-special-trade-contractors-industry-email-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",
                "required": [
                    "googleMapsLocation",
                    "googleMapsSearchTerm"
                ],
                "properties": {
                    "googleMapsSearchTerm": {
                        "title": "Search Term",
                        "type": "string",
                        "description": "Enter the business type or niche for email scraper (e.g., 'coffee shops', 'dentists').",
                        "default": "Special Trade Contractors Industry"
                    },
                    "googleMapsLocation": {
                        "title": "Location",
                        "type": "array",
                        "description": "Target geographic location for the email scraper (e.g., 'Miami, Florida').",
                        "default": [
                            "New York"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxBusinesses": {
                        "title": "Maximum Businesses With Emails",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Target number of businesses to find (1-1000). The scraper will stop when this target is reached.",
                        "default": 5
                    },
                    "scrapeMaxBusinessesPerLocation": {
                        "title": "Scrape Max Businesses Per Location",
                        "type": "boolean",
                        "description": "If enabled, the scraper will collect up to `maxBusinesses` results per location. If disabled, it combines all locations up to a single total limit.",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings for scraping. Recommended for large-scale scraping."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
