# Google Trends Scraper — Compare, Interest & Trending Now (`automation_craft/google-trends-scraper`) Actor

Fast, browser-free Google Trends data: interest over time with real multi-keyword comparison (shared 0-100 scale), interest by region, related queries & topics, plus real-time Trending Now with volume, growth and news. Pay only for results.

- **URL**: https://apify.com/automation\_craft/google-trends-scraper.md
- **Developed by:** [Automation Craft](https://apify.com/automation_craft) (community)
- **Categories:** SEO tools, News
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: 5.00 out of 5 stars

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

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

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

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

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

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

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

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

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

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


# README

## Google Trends Scraper — Compare Keywords, Interest & Trending Now

Get Google Trends data as clean JSON — no browser, no API key, no login. Three things in one Actor:

1. **Keyword reports** — how interest in a search term changed over time (0–100), which regions search for it most, and which related queries are rising.
2. **Keyword comparison** — 2–5 terms in ONE query on a **shared 0–100 scale**, exactly like the compare view on trends.google.com. This is the feature most Trends scrapers get wrong: if you scrape terms separately, Google normalizes each one to its own scale and the numbers are NOT comparable.
3. **Trending Now** — the searches trending right now in any country, with search volume, growth %, start time, related keywords, and news articles.

### Why use this one?

- **Fast.** Trending Now returns in seconds; a full keyword report typically takes under a minute. No headless browser anywhere.
- **Comparison that actually works.** `compareKeywords` is a plain input field — no fragile flags — so it behaves the same from the Console, the API, and AI agents (MCP).
- **You only pay for data.** A failed keyword, an empty result, an error — all free. If the run charges you, it delivered data.
- **Built for Google's rate limits.** Google throttles Trends hard, per IP. This Actor rotates a fresh residential IP on every data request and retries automatically, which is why runs succeed where scripts and cheaper actors return nothing.

### What this Actor does NOT do

Honesty up front:

- **No absolute search volumes for keywords.** Google Trends only publishes relative interest (0–100). Only Trending Now items carry approximate real volumes (e.g. `200000`) — because Google publishes those.
- **No related topics.** Google returns empty topic lists to any automated session, so this Actor doesn't pretend to offer them. Related *queries* work fully.
- **Comparison is capped at 5 terms** — that's Google's own limit for a shared scale. Individual keywords are capped at 20 per run to keep runs reliable.

### Input examples

**What's trending in the US right now:**

```json
{
    "scrapeTrendingNow": true,
    "trendingGeos": ["US"]
}
````

**Full report for each keyword:**

```json
{
    "keywords": ["standing desk", "ergonomic chair"],
    "timeframe": "today 12-m",
    "geo": "US"
}
```

**Compare terms on one scale:**

```json
{
    "compareKeywords": ["notion", "obsidian", "evernote"],
    "timeframe": "today 3-m",
    "geo": ""
}
```

All three can be combined in one run. `geo` empty = worldwide. Timeframes: `now 1-H`, `now 4-H`, `now 1-d`, `now 7-d`, `today 1-m`, `today 3-m`, `today 12-m`, `today 5-y`, `all`, or a custom range like `2024-01-01 2024-12-31`.

### Output examples

**Trending item** (one per trend):

```json
{
    "type": "trending_now",
    "trending_geo": "US",
    "keyword": "taylor farms",
    "search_volume": 200000,
    "volume_growth_pct": 1000,
    "started_at": "2026-07-16T21:20:00.000Z",
    "is_active": true,
    "trend_keywords": ["taylor farms", "taylor farms lettuce"],
    "topics": ["Food and Drink", "Health"],
    "news": [
        {
            "title": "Cyclospora Linked to Taylor Farms Lettuce Sent to Taco Bell",
            "url": "https://www.nytimes.com/...",
            "source": "The New York Times",
            "picture": "https://encrypted-tbn1.gstatic.com/..."
        }
    ]
}
```

**Keyword report** (one per keyword):

```json
{
    "type": "keyword",
    "keyword": "coffee",
    "geo": "US",
    "timeframe": "today 12-m",
    "stats": { "average": 75.4, "peak": 100, "peak_date": "2026-04-12", "latest": 76, "direction": "rising" },
    "interest_over_time": [{ "date": "2025-07-13", "value": 67 }],
    "interest_by_region": [{ "geo_code": "US-HI", "region": "Hawaii", "value": 100 }],
    "related_queries": { "top": [{ "query": "coffee shop", "value": 100 }], "rising": [] }
}
```

**Comparison** (one item for the whole set — values share one scale):

```json
{
    "type": "comparison",
    "keywords": ["netflix", "disney plus", "hbo max"],
    "scale": "shared",
    "stats": { "netflix": { "average": 59.1 }, "disney plus": { "average": 7.6 }, "hbo max": { "average": 5.3 } },
    "interest_over_time": [{ "date": "2026-04-17", "values": { "netflix": 61, "disney plus": 8, "hbo max": 5 } }],
    "interest_by_region": [{ "region": "California", "values": { "netflix": 58, "disney plus": 9, "hbo max": 6 } }],
    "related_queries": { "netflix": { "top": [], "rising": [] } }
}
```

Every run also pushes one `summary` item (what succeeded, what failed and why, what was charged), and failures push free `error` items with plain-language messages.

### How much does it cost?

| Event | Price | You pay when |
| --- | --- | --- |
| Actor start | $0.02 | each run starts |
| Trending Now | $0.02 per country | the country's trend list came back (up to ~480 trends + news — one flat price, however many items) |
| Keyword report | $0.03 per keyword | the report contains data |
| Comparison | $0.05 per comparison | the comparison contains data |

Examples: daily "what's trending in the US" schedule ≈ **$1.20/month**. A 10-keyword research run = **$0.32**. Comparing 5 brands = **$0.07**.

Failed or empty results are never charged — that's the whole point.

### FAQ

**Where does the data come from?** Google Trends' own public endpoints — the same ones the trends.google.com pages call. Nothing is estimated or modeled.

**Can I use it from an AI agent / MCP?** Yes — the input is flat and explicit, and every output item has a `type` field to route on. Ask your agent things like "compare interest in X vs Y over the last 3 months" or "what's trending in Germany right now".

**Which countries work for Trending Now?** Any country Google Trends supports (50+): `US`, `GB`, `IN`, `DE`, `JP`, `BR`… one geo code per entry in `trendingGeos`.

**Why do keyword runs need the residential proxy?** Google rate-limits Trends per IP aggressively. The default configuration (Apify residential) is what makes keyword reports reliable; datacenter proxies will get 429s. Trending Now doesn't need a proxy at all.

**Is this legal?** The Actor only reads publicly available data that Google publishes to everyone. It doesn't log in, bypass paywalls, or collect personal data.

# Actor input Schema

## `scrapeTrendingNow` (type: `boolean`):

Get the searches trending right now in each country listed under <b>Trending geos</b> — with search volume, growth %, start time, related keywords, and news articles. Fast (seconds) and needs no proxy. One flat $0.02 charge per country, however many trends come back.

## `trendingGeos` (type: `array`):

Country codes to get trending searches for: <code>US</code>, <code>GB</code>, <code>IN</code>, <code>DE</code>, <code>JP</code>… One charge per country.

## `trendingHours` (type: `integer`):

How far back to look for trending searches, in hours. 4 = happening right now, 24 = today (default), 168 = past week. Google accepts 1–191.

## `includeTrendingNews` (type: `boolean`):

Attach related news articles (title, URL, source, image) to each trending item. Free — no extra charge.

## `maxTrendingItems` (type: `integer`):

Maximum trending items returned per country. Google provides up to ~480; the price per country is the same either way.

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

Search terms to analyze — each gets its own report: interest over time with summary stats, interest by region, and related queries. Each term is scored on its own 0–100 scale (use <b>Compare keywords</b> below if you need terms on ONE scale). Max 20 per run. $0.03 per report that contains data; failures and empty results are free.

## `compareKeywords` (type: `array`):

2–5 terms compared in a single Google Trends query, so their values share one 0–100 scale — directly comparable, like the compare view on trends.google.com. Produces one comparison item with per-term stats, regional breakdown, and related queries. $0.05 when it contains data.

## `timeframe` (type: `string`):

Time range for keyword analysis: <code>now 1-H</code>, <code>now 4-H</code>, <code>now 1-d</code>, <code>now 7-d</code>, <code>today 1-m</code>, <code>today 3-m</code>, <code>today 12-m</code> (default), <code>today 5-y</code>, <code>all</code>, or a custom range like <code>2024-01-01 2024-12-31</code>.

## `geo` (type: `string`):

Where to measure keyword interest: a country (<code>US</code>), a region (<code>US-CA</code>), or empty for worldwide.

## `category` (type: `integer`):

Google Trends category id to narrow keyword results (0 = all categories). Find ids in the trends.google.com URL after <code>cat=</code>.

## `property` (type: `string`):

Which Google surface to measure: Web Search (default), Image Search, Google News, YouTube, or Google Shopping.

## `includeInterestOverTime` (type: `boolean`):

Include the interest-over-time series plus computed stats (average, peak, peak date, latest, direction).

## `includeInterestByRegion` (type: `boolean`):

Include the breakdown of which regions search the term most.

## `includeRelatedQueries` (type: `boolean`):

Include top and rising related queries. (Related topics are not offered — Google returns empty topic lists to automated sessions.)

## `language` (type: `string`):

Language for trending results: <code>en</code>, <code>de</code>, <code>ja</code>…

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

Proxy used for keyword analysis. Keep the default (Apify residential): Google rate-limits Trends per IP, and residential rotation is what makes keyword reports reliable. Datacenter proxies will fail with 429 errors. Trending Now never uses a proxy.

## Actor input object example

```json
{
  "scrapeTrendingNow": true,
  "trendingGeos": [
    "US"
  ],
  "trendingHours": 24,
  "includeTrendingNews": true,
  "maxTrendingItems": 100,
  "keywords": [],
  "compareKeywords": [],
  "timeframe": "today 12-m",
  "geo": "US",
  "category": 0,
  "property": "",
  "includeInterestOverTime": true,
  "includeInterestByRegion": true,
  "includeRelatedQueries": true,
  "language": "en",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

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

No description

## `trending` (type: `string`):

No description

## `keywordReports` (type: `string`):

No description

## `resultsCsv` (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 = {
    "scrapeTrendingNow": true,
    "trendingGeos": [
        "US"
    ],
    "keywords": [],
    "compareKeywords": [],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("automation_craft/google-trends-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 = {
    "scrapeTrendingNow": True,
    "trendingGeos": ["US"],
    "keywords": [],
    "compareKeywords": [],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("automation_craft/google-trends-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 '{
  "scrapeTrendingNow": true,
  "trendingGeos": [
    "US"
  ],
  "keywords": [],
  "compareKeywords": [],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call automation_craft/google-trends-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Google Trends Scraper — Compare, Interest & Trending Now",
        "description": "Fast, browser-free Google Trends data: interest over time with real multi-keyword comparison (shared 0-100 scale), interest by region, related queries & topics, plus real-time Trending Now with volume, growth and news. Pay only for results.",
        "version": "0.1",
        "x-build-id": "n8ifHObbgLnzE7FEm"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automation_craft~google-trends-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automation_craft-google-trends-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/automation_craft~google-trends-scraper/runs": {
            "post": {
                "operationId": "runs-sync-automation_craft-google-trends-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/automation_craft~google-trends-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-automation_craft-google-trends-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "scrapeTrendingNow": {
                        "title": "Scrape Trending Now",
                        "type": "boolean",
                        "description": "Get the searches trending right now in each country listed under <b>Trending geos</b> — with search volume, growth %, start time, related keywords, and news articles. Fast (seconds) and needs no proxy. One flat $0.02 charge per country, however many trends come back."
                    },
                    "trendingGeos": {
                        "title": "Trending geos",
                        "type": "array",
                        "description": "Country codes to get trending searches for: <code>US</code>, <code>GB</code>, <code>IN</code>, <code>DE</code>, <code>JP</code>… One charge per country.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "trendingHours": {
                        "title": "Trending window (hours)",
                        "minimum": 1,
                        "maximum": 191,
                        "type": "integer",
                        "description": "How far back to look for trending searches, in hours. 4 = happening right now, 24 = today (default), 168 = past week. Google accepts 1–191.",
                        "default": 24
                    },
                    "includeTrendingNews": {
                        "title": "Attach news articles to trends",
                        "type": "boolean",
                        "description": "Attach related news articles (title, URL, source, image) to each trending item. Free — no extra charge.",
                        "default": true
                    },
                    "maxTrendingItems": {
                        "title": "Max trending items per geo",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum trending items returned per country. Google provides up to ~480; the price per country is the same either way.",
                        "default": 100
                    },
                    "keywords": {
                        "title": "Keywords (analyzed individually)",
                        "type": "array",
                        "description": "Search terms to analyze — each gets its own report: interest over time with summary stats, interest by region, and related queries. Each term is scored on its own 0–100 scale (use <b>Compare keywords</b> below if you need terms on ONE scale). Max 20 per run. $0.03 per report that contains data; failures and empty results are free.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "compareKeywords": {
                        "title": "Compare keywords (shared scale)",
                        "type": "array",
                        "description": "2–5 terms compared in a single Google Trends query, so their values share one 0–100 scale — directly comparable, like the compare view on trends.google.com. Produces one comparison item with per-term stats, regional breakdown, and related queries. $0.05 when it contains data.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "timeframe": {
                        "title": "Timeframe",
                        "type": "string",
                        "description": "Time range for keyword analysis: <code>now 1-H</code>, <code>now 4-H</code>, <code>now 1-d</code>, <code>now 7-d</code>, <code>today 1-m</code>, <code>today 3-m</code>, <code>today 12-m</code> (default), <code>today 5-y</code>, <code>all</code>, or a custom range like <code>2024-01-01 2024-12-31</code>.",
                        "default": "today 12-m"
                    },
                    "geo": {
                        "title": "Geo (keyword analysis)",
                        "type": "string",
                        "description": "Where to measure keyword interest: a country (<code>US</code>), a region (<code>US-CA</code>), or empty for worldwide.",
                        "default": "US"
                    },
                    "category": {
                        "title": "Category id",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Google Trends category id to narrow keyword results (0 = all categories). Find ids in the trends.google.com URL after <code>cat=</code>.",
                        "default": 0
                    },
                    "property": {
                        "title": "Search property",
                        "enum": [
                            "",
                            "images",
                            "news",
                            "youtube",
                            "froogle"
                        ],
                        "type": "string",
                        "description": "Which Google surface to measure: Web Search (default), Image Search, Google News, YouTube, or Google Shopping.",
                        "default": ""
                    },
                    "includeInterestOverTime": {
                        "title": "Interest over time",
                        "type": "boolean",
                        "description": "Include the interest-over-time series plus computed stats (average, peak, peak date, latest, direction).",
                        "default": true
                    },
                    "includeInterestByRegion": {
                        "title": "Interest by region",
                        "type": "boolean",
                        "description": "Include the breakdown of which regions search the term most.",
                        "default": true
                    },
                    "includeRelatedQueries": {
                        "title": "Related queries",
                        "type": "boolean",
                        "description": "Include top and rising related queries. (Related topics are not offered — Google returns empty topic lists to automated sessions.)",
                        "default": true
                    },
                    "language": {
                        "title": "Language",
                        "type": "string",
                        "description": "Language for trending results: <code>en</code>, <code>de</code>, <code>ja</code>…",
                        "default": "en"
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxy used for keyword analysis. Keep the default (Apify residential): Google rate-limits Trends per IP, and residential rotation is what makes keyword reports reliable. Datacenter proxies will fail with 429 errors. Trending Now never uses a proxy.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
