# All-In-One Content Scraper (`caring_dizi/all-in-one-content-scraper`) Actor

The Ultimate All-in-One Web Scraping Solution - Extract ANY media from ANY website with professional-grade precision and speed.

- **URL**: https://apify.com/caring\_dizi/all-in-one-content-scraper.md
- **Developed by:** [Jeff Halverson](https://apify.com/caring_dizi) (community)
- **Categories:** Social media, Developer tools, E-commerce
- **Stats:** 7 total users, 0 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

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

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

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

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

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

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

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

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

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

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

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


# README

## ALL in One Dats Scraper-Revamped

One actor. Four scraping surfaces. One pricing surface.

`Universal Data Harvester` is designed as a Swiss-army-knife actor for users who need more than one scraping workflow without paying for a different actor every time. Instead of forcing separate purchases for local leads, Apollo-style sales research, Instagram pulls, and general web extraction, this actor puts those modes behind one input schema.

The current build focuses on returning complete, useful records instead of thin proof-of-life responses:

- `web` returns article blocks, fallback text previews, contact points, social links, metadata, media, and links
- `google_maps` can follow each discovered place into its detail pane for enriched lead fields such as address, website, phone, hours, plus code, and review counts
- `apollo` returns company cards, structured company profiles, FAQs, product links, and lead-style outputs from Apollo pages
- `instagram` uses Instagram's public profile surface for richer profile metadata and recent post records on public accounts

### Modes

- `web`: general website and content extraction with articles, metadata, media, and links
- `google_maps`: local business and place extraction from Google Maps searches
- `apollo`: Apollo-focused discovery and Apollo page scraping for company and people data
- `instagram`: Instagram profiles, posts, hashtags, places, and search surfaces

### What It Returns

Every dataset item uses the same top-level contract:

- `mode`
- `contentType`
- `url`
- `title`
- `query`
- `summary`
- `exports`
- plus mode-specific fields such as `places`, `companies`, `people`, `profile`, `posts`, `images`, `videos`, `links`, `contactPoints`, `textPreview`, `companyProfile`, `featuredFaqs`, and `highlights`

### Input Examples

#### Web

```json
{
  "scrapingMode": "web",
  "startUrls": [
    { "url": "https://example.com" }
  ],
  "maxRequestsPerCrawl": 5,
  "includeImages": true,
  "includeVideos": true
}
````

#### Google Maps

```json
{
  "scrapingMode": "google_maps",
  "searchTerms": [
    "dentists seattle",
    "roofing contractors tacoma"
  ],
  "googleMapsResultLimit": 10,
  "followGoogleMapsPlaceDetails": true
}
```

#### Apollo

```json
{
  "scrapingMode": "apollo",
  "apolloQueries": [
    "openai",
    "b2b saas sales intelligence"
  ],
  "apolloDiscoveryLimit": 5,
  "followDiscoveredApolloUrls": true
}
```

Or scrape direct Apollo URLs:

```json
{
  "scrapingMode": "apollo",
  "apolloStartUrls": [
    { "url": "https://www.apollo.io/companies/example" }
  ]
}
```

#### Instagram

```json
{
  "scrapingMode": "instagram",
  "instagramInputType": "profiles",
  "instagramHandles": [
    "instagram"
  ],
  "instagramResultLimit": 12
}
```

Hashtags, places, posts, and search are also supported through `instagramInputType`.

### Session Cookies

Apollo and Instagram can expose more data when run against authenticated pages. If you have a valid session, pass cookies in `sessionCookiesJson` as a JSON array.

### Product Intent

This actor is built around one idea: if your workflow needs two or more scraping categories, you should not have to buy two or more separate actors with unrelated pricing logic just to finish one job.

# Actor input Schema

## `scrapingMode` (type: `string`):

Choose the surface you want to scrape.

## `maxRequestsPerCrawl` (type: `integer`):

Maximum requests to execute in this run.

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

Parallelism for modes that support it.

## `sameDomainOnly` (type: `boolean`):

When crawling in Web mode, only enqueue discovered links that stay on the same registrable domain.

## `linkEnqueueLimit` (type: `integer`):

Caps how many discovered links are added from each processed page in Web mode.

## `requestHandlerTimeoutSecs` (type: `integer`):

Timeout per request handler.

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

Navigation timeout before a page is treated as failed.

## `maxRequestRetries` (type: `integer`):

Retries for failed pages.

## `headless` (type: `boolean`):

Run the browser headlessly.

## `viewportWidth` (type: `integer`):

Browser viewport width in pixels for JavaScript-heavy pages.

## `viewportHeight` (type: `integer`):

Browser viewport height in pixels for JavaScript-heavy pages.

## `sessionCookiesJson` (type: `string`):

Optional JSON array of cookies for logged-in surfaces such as Apollo or Instagram.

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

One or more URLs to crawl in Web mode.

## `includeImages` (type: `boolean`):

Capture image URLs where supported.

## `includeVideos` (type: `boolean`):

Capture video URLs where supported.

## `maxImages` (type: `integer`):

Maximum number of image URLs to keep per output record.

## `maxVideos` (type: `integer`):

Maximum number of video references to keep per output record.

## `maxLinksPerPage` (type: `integer`):

Maximum number of outbound links preserved per page record.

## `maxArticleBlocks` (type: `integer`):

Maximum number of article-like text blocks stored for each page.

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

Keyword and location combinations to search in Google Maps mode.

## `googleMapsResultLimit` (type: `integer`):

Maximum places to extract for each Google Maps search term.

## `followGoogleMapsPlaceDetails` (type: `boolean`):

Open each discovered place page to enrich it with website, phone, address, reviews, and hours when available.

## `apolloStartUrls` (type: `array`):

Direct Apollo URLs to scrape, including company pages, people pages, or authenticated search pages.

## `apolloQueries` (type: `array`):

Search terms used to discover public Apollo pages.

## `apolloCompanyDomains` (type: `array`):

Company domains to discover on Apollo.

## `apolloDiscoveryLimit` (type: `integer`):

Maximum Apollo links to discover per query.

## `apolloResultLimit` (type: `integer`):

Maximum companies or people to emit from a single Apollo page.

## `followDiscoveredApolloUrls` (type: `boolean`):

After discovery, follow the Apollo links and scrape those pages too.

## `instagramInputType` (type: `string`):

Type of Instagram target to scrape.

## `instagramHandles` (type: `array`):

Profiles, hashtags, location IDs, or post codes depending on Instagram target type.

## `instagramUrls` (type: `array`):

Explicit Instagram URLs to crawl.

## `instagramQuery` (type: `string`):

Keyword query for Instagram search mode.

## `instagramResultLimit` (type: `integer`):

Maximum recent posts to capture on Instagram pages.

## Actor input object example

```json
{
  "scrapingMode": "web",
  "maxRequestsPerCrawl": 15,
  "maxConcurrency": 4,
  "sameDomainOnly": true,
  "linkEnqueueLimit": 10,
  "requestHandlerTimeoutSecs": 120,
  "navigationTimeoutSecs": 60,
  "maxRequestRetries": 1,
  "headless": true,
  "viewportWidth": 1440,
  "viewportHeight": 1200,
  "sessionCookiesJson": "[]",
  "startUrls": [
    {
      "url": "https://example.com"
    }
  ],
  "includeImages": true,
  "includeVideos": true,
  "maxImages": 100,
  "maxVideos": 50,
  "maxLinksPerPage": 150,
  "maxArticleBlocks": 6,
  "googleMapsResultLimit": 10,
  "followGoogleMapsPlaceDetails": true,
  "apolloDiscoveryLimit": 5,
  "apolloResultLimit": 10,
  "followDiscoveredApolloUrls": true,
  "instagramInputType": "profiles",
  "instagramResultLimit": 12
}
```

# Actor output Schema

## `results` (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 = {
    "sessionCookiesJson": "[]",
    "startUrls": [
        {
            "url": "https://example.com"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("caring_dizi/all-in-one-content-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 = {
    "sessionCookiesJson": "[]",
    "startUrls": [{ "url": "https://example.com" }],
}

# Run the Actor and wait for it to finish
run = client.actor("caring_dizi/all-in-one-content-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 '{
  "sessionCookiesJson": "[]",
  "startUrls": [
    {
      "url": "https://example.com"
    }
  ]
}' |
apify call caring_dizi/all-in-one-content-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "All-In-One Content Scraper",
        "description": "The Ultimate All-in-One Web Scraping Solution - Extract ANY media from ANY website with professional-grade precision and speed.",
        "version": "1.0",
        "x-build-id": "6TZBbmVWfE5TyGece"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/caring_dizi~all-in-one-content-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-caring_dizi-all-in-one-content-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/caring_dizi~all-in-one-content-scraper/runs": {
            "post": {
                "operationId": "runs-sync-caring_dizi-all-in-one-content-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/caring_dizi~all-in-one-content-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-caring_dizi-all-in-one-content-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": [
                    "scrapingMode"
                ],
                "properties": {
                    "scrapingMode": {
                        "title": "Scraping Mode",
                        "enum": [
                            "web",
                            "google_maps",
                            "apollo",
                            "instagram"
                        ],
                        "type": "string",
                        "description": "Choose the surface you want to scrape.",
                        "default": "web"
                    },
                    "maxRequestsPerCrawl": {
                        "title": "Max Requests",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum requests to execute in this run.",
                        "default": 15
                    },
                    "maxConcurrency": {
                        "title": "Concurrency",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Parallelism for modes that support it.",
                        "default": 4
                    },
                    "sameDomainOnly": {
                        "title": "Stay on Same Domain",
                        "type": "boolean",
                        "description": "When crawling in Web mode, only enqueue discovered links that stay on the same registrable domain.",
                        "default": true
                    },
                    "linkEnqueueLimit": {
                        "title": "Max Links to Enqueue Per Page",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Caps how many discovered links are added from each processed page in Web mode.",
                        "default": 10
                    },
                    "requestHandlerTimeoutSecs": {
                        "title": "Request Timeout (sec)",
                        "minimum": 30,
                        "type": "integer",
                        "description": "Timeout per request handler.",
                        "default": 120
                    },
                    "navigationTimeoutSecs": {
                        "title": "Navigation Timeout (sec)",
                        "minimum": 20,
                        "type": "integer",
                        "description": "Navigation timeout before a page is treated as failed.",
                        "default": 60
                    },
                    "maxRequestRetries": {
                        "title": "Max Retries",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Retries for failed pages.",
                        "default": 1
                    },
                    "headless": {
                        "title": "Headless Browser",
                        "type": "boolean",
                        "description": "Run the browser headlessly.",
                        "default": true
                    },
                    "viewportWidth": {
                        "title": "Viewport Width",
                        "type": "integer",
                        "description": "Browser viewport width in pixels for JavaScript-heavy pages.",
                        "default": 1440
                    },
                    "viewportHeight": {
                        "title": "Viewport Height",
                        "type": "integer",
                        "description": "Browser viewport height in pixels for JavaScript-heavy pages.",
                        "default": 1200
                    },
                    "sessionCookiesJson": {
                        "title": "Session Cookies JSON",
                        "type": "string",
                        "description": "Optional JSON array of cookies for logged-in surfaces such as Apollo or Instagram."
                    },
                    "startUrls": {
                        "title": "Start URLs (Web)",
                        "type": "array",
                        "description": "One or more URLs to crawl in Web mode.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "includeImages": {
                        "title": "Include Images",
                        "type": "boolean",
                        "description": "Capture image URLs where supported.",
                        "default": true
                    },
                    "includeVideos": {
                        "title": "Include Videos",
                        "type": "boolean",
                        "description": "Capture video URLs where supported.",
                        "default": true
                    },
                    "maxImages": {
                        "title": "Max Images Per Record",
                        "type": "integer",
                        "description": "Maximum number of image URLs to keep per output record.",
                        "default": 100
                    },
                    "maxVideos": {
                        "title": "Max Videos Per Record",
                        "type": "integer",
                        "description": "Maximum number of video references to keep per output record.",
                        "default": 50
                    },
                    "maxLinksPerPage": {
                        "title": "Max Links Per Page",
                        "type": "integer",
                        "description": "Maximum number of outbound links preserved per page record.",
                        "default": 150
                    },
                    "maxArticleBlocks": {
                        "title": "Max Content Blocks",
                        "type": "integer",
                        "description": "Maximum number of article-like text blocks stored for each page.",
                        "default": 6
                    },
                    "searchTerms": {
                        "title": "Search Terms (Google Maps)",
                        "type": "array",
                        "description": "Keyword and location combinations to search in Google Maps mode.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "googleMapsResultLimit": {
                        "title": "Places Per Search",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum places to extract for each Google Maps search term.",
                        "default": 10
                    },
                    "followGoogleMapsPlaceDetails": {
                        "title": "Follow Google Maps Place Details",
                        "type": "boolean",
                        "description": "Open each discovered place page to enrich it with website, phone, address, reviews, and hours when available.",
                        "default": true
                    },
                    "apolloStartUrls": {
                        "title": "Apollo URLs",
                        "type": "array",
                        "description": "Direct Apollo URLs to scrape, including company pages, people pages, or authenticated search pages.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "apolloQueries": {
                        "title": "Apollo Discovery Queries",
                        "type": "array",
                        "description": "Search terms used to discover public Apollo pages.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "apolloCompanyDomains": {
                        "title": "Apollo Company Domains",
                        "type": "array",
                        "description": "Company domains to discover on Apollo.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "apolloDiscoveryLimit": {
                        "title": "Apollo Links Per Query",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum Apollo links to discover per query.",
                        "default": 5
                    },
                    "apolloResultLimit": {
                        "title": "Apollo Records Per Page",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum companies or people to emit from a single Apollo page.",
                        "default": 10
                    },
                    "followDiscoveredApolloUrls": {
                        "title": "Follow Discovered Apollo URLs",
                        "type": "boolean",
                        "description": "After discovery, follow the Apollo links and scrape those pages too.",
                        "default": true
                    },
                    "instagramInputType": {
                        "title": "Instagram Target Type",
                        "enum": [
                            "profiles",
                            "posts",
                            "hashtags",
                            "places",
                            "search"
                        ],
                        "type": "string",
                        "description": "Type of Instagram target to scrape.",
                        "default": "profiles"
                    },
                    "instagramHandles": {
                        "title": "Instagram Handles / IDs",
                        "type": "array",
                        "description": "Profiles, hashtags, location IDs, or post codes depending on Instagram target type.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "instagramUrls": {
                        "title": "Instagram URLs",
                        "type": "array",
                        "description": "Explicit Instagram URLs to crawl.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "instagramQuery": {
                        "title": "Instagram Search Query",
                        "type": "string",
                        "description": "Keyword query for Instagram search mode."
                    },
                    "instagramResultLimit": {
                        "title": "Instagram Posts Per Record",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum recent posts to capture on Instagram pages.",
                        "default": 12
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
