# Investing.com Stock Data Scraper (`solidcode/investing-com-stock-data-scraper`) Actor

\[💰 $5.0 / 1K] Extract fundamental and quote data for stocks on Investing.com by ticker symbol — price, change, market cap, P/E, EPS, dividend yield, 52-week range, extended-hours pricing, and company profile.

- **URL**: https://apify.com/solidcode/investing-com-stock-data-scraper.md
- **Developed by:** [SolidCode](https://apify.com/solidcode) (community)
- **Categories:** Developer tools, Automation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

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

## Investing.com Stock Data Scraper

Pull complete stock data from Investing.com by ticker symbol — live price, daily OHLC, 52-week range, market cap, P/E, EPS, dividend yield, beta, next-earnings date, company profile, and pre-market plus after-hours pricing, all in one flat record per stock. Type a plain ticker like `AAPL` and get back 30+ structured fields. Built for retail investors, financial analysts, and fintech builders who need clean, structured market data without copy-pasting from Investing.com one stock page at a time.

### Why This Scraper?

- **30+ fields per stock in one flat record** — symbol, ISIN, exchange, sector, industry, employee count, full company description, price, OHLC, 52-week range, volume, market cap, and key ratios, with no nested arrays to flatten.
- **Pre-market AND after-hours pricing** — extended-hours price plus its timestamp on every US listing, so you see the quote before the bell and after the close, not just the regular session.
- **Six fundamental ratios on every stock** — P/E, EPS, dividend yield, beta, trailing one-year return, and market capitalization, ready for screening and valuation models.
- **Global coverage across 46 country exchanges** — from the United States, United Kingdom, and Germany to Japan, Brazil, India, and Saudi Arabia, selectable from a clean country dropdown that resolves each ticker to its home-market listing.
- **Automatic ticker-to-listing resolution** — type a bare symbol and the scraper finds the right equity page for you; no instrument IDs, slugs, or URLs to look up by hand.
- **Batch lookups in a single run** — pass a whole list of tickers (`["AAPL", "MSFT", "BBVA"]`) and get one result per symbol, instead of running the scraper once per stock.
- **ISIN and exchange identifiers on every record** — the international securities identification number plus the listing exchange name, so each row maps cleanly to your existing security master.
- **Next-earnings date out of the box** — the next scheduled earnings report date is captured per stock, ready for earnings-calendar dashboards and alerts.
- **Tolerant by design** — a ticker that can't be matched returns a clearly flagged row (`found: false`) instead of failing the run, so one bad symbol never costs you the rest of your batch.

### Use Cases

**Investment Research**
- Screen stocks by P/E, EPS, dividend yield, and beta across a watchlist
- Compare a company's last price against its 52-week high and low
- Pull market capitalization and one-year return for valuation models
- Read the full company profile — sector, industry, employees, and description — in one place

**Portfolio Monitoring**
- Refresh price, change percent, and volume across your holdings on a schedule
- Track pre-market and after-hours moves before and after the regular session
- Watch the next-earnings date for every position to prepare ahead of reports
- Monitor daily open, high, and low for stocks you actively trade

**Fintech & App Building**
- Power a stock-quote or watchlist app with structured price and fundamentals data
- Feed a portfolio tracker with consistent, machine-readable records
- Map every stock to its ISIN and exchange for a clean security master
- Build earnings-calendar and alerting features on the next-earnings field

**Market Analysis**
- Compare the same company's listings across international exchanges
- Build sector and industry breakdowns from the company profile fields
- Analyze dividend yield and beta distributions across a market segment
- Track market-cap rankings over time with scheduled runs

**Data Enrichment**
- Enrich an existing ticker list with live price, ratios, and company metadata
- Resolve plain symbols to ISIN and exchange identifiers in bulk
- Append fresh fundamentals to a research spreadsheet or database
- Fill gaps in a security master with sector, industry, and currency data

### Getting Started

#### Look Up a Single Stock

The simplest way to start — one ticker:

```json
{
    "stockSymbols": ["AAPL"]
}
````

#### Batch of US Stocks

Pass a list to get one result per symbol:

```json
{
    "stockSymbols": ["AAPL", "MSFT", "NVDA", "TSLA"],
    "country": "united states"
}
```

#### International Listing

Target a non-US exchange so the right listing is picked:

```json
{
    "stockSymbols": ["BBVA", "SAN"],
    "country": "spain"
}
```

### Input Reference

#### What to Look Up

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `stockSymbols` | string\[] | `["AAPL"]` | One or more stock ticker symbols to look up, such as `AAPL`, `MSFT`, or `BBVA`. Each symbol returns one result. |
| `country` | select | `United States` | Country where the stocks are listed. Helps pick the right listing when the same ticker exists on multiple exchanges. Choose from 46 countries including the US, UK, Germany, Japan, Brazil, India, and more. |

### Output

Each stock returns one flat record. Here's a representative result:

```json
{
    "symbol": "AAPL",
    "country": "united states",
    "found": true,
    "instrumentId": 6408,
    "isin": "US0378331005",
    "companyName": "Apple Inc",
    "exchange": "NASDAQ",
    "sector": "Technology",
    "industry": "Consumer Electronics",
    "market": "United States",
    "employees": 164000,
    "description": "Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide...",
    "currency": "USD",
    "lastPrice": 228.52,
    "change": 1.83,
    "changePercent": 0.81,
    "openPrice": 226.95,
    "highPrice": 229.41,
    "lowPrice": 226.30,
    "week52High": 260.10,
    "week52Low": 164.08,
    "volume": 41250300,
    "marketCap": 3470000000000,
    "peRatio": 34.72,
    "eps": 6.58,
    "dividendYield": 0.44,
    "beta": 1.21,
    "oneYearReturn": 18.34,
    "nextEarningsDate": "2026-07-30",
    "preMarketPrice": 229.10,
    "afterHoursPrice": 228.90,
    "extendedHoursTime": "2026-05-30T20:15:00+00:00",
    "url": "https://www.investing.com/equities/apple-computer-inc",
    "retrievedAt": "2026-05-30T18:00:00+00:00"
}
```

#### Identity & Profile

| Field | Type | Description |
|-------|------|-------------|
| `symbol` | string | Ticker symbol you queried |
| `companyName` | string | Full company name |
| `isin` | string | International Securities Identification Number |
| `exchange` | string | Listing exchange name (e.g. NASDAQ) |
| `sector` | string | Sector classification |
| `industry` | string | Industry classification |
| `market` | string | Market or market segment |
| `employees` | number | Number of employees |
| `description` | string | Company business description |
| `instrumentId` | number | Investing.com internal instrument identifier |

#### Price & Trading

| Field | Type | Description |
|-------|------|-------------|
| `currency` | string | Quote currency (e.g. USD) |
| `lastPrice` | number | Most recent trade price |
| `change` | number | Absolute price change for the session |
| `changePercent` | number | Percentage price change for the session |
| `openPrice` | number | Session opening price |
| `highPrice` | number | Session high |
| `lowPrice` | number | Session low |
| `week52High` | number | Highest price over the trailing 52 weeks |
| `week52Low` | number | Lowest price over the trailing 52 weeks |
| `volume` | number | Trading volume |

#### Fundamentals & Ratios

| Field | Type | Description |
|-------|------|-------------|
| `marketCap` | number | Market capitalization (raw value) |
| `peRatio` | number | Price-to-earnings ratio |
| `eps` | number | Earnings per share |
| `dividendYield` | number | Dividend yield, as a percentage |
| `beta` | number | Beta (volatility relative to the market) |
| `oneYearReturn` | number | Trailing one-year return, as a percentage |
| `nextEarningsDate` | string | Next scheduled earnings report date |

#### Extended Hours

| Field | Type | Description |
|-------|------|-------------|
| `preMarketPrice` | number | Pre-market price (null when unavailable) |
| `afterHoursPrice` | number | After-hours price (null when unavailable) |
| `extendedHoursTime` | string | Timestamp of the extended-hours quote (null when unavailable) |

#### Metadata

| Field | Type | Description |
|-------|------|-------------|
| `country` | string | Country you selected for the lookup |
| `found` | boolean | Whether data was successfully matched for this symbol |
| `message` | string | Present only on a miss when you set a country — a short note explaining the symbol isn't listed in that country |
| `url` | string | Source equity page on Investing.com |
| `retrievedAt` | string | ISO timestamp when the record was retrieved |

### Tips for Best Results

- **Set the country to target the right listing** — the same ticker can list on several exchanges, so picking the matching country (e.g. `spain` for `BBVA`) ensures you get the listing you actually want.
- **Batch your tickers** — pass your whole watchlist in `stockSymbols` in a single run rather than running once per stock; you get one clean result per symbol.
- **Pre-market and after-hours fields are US-listing features** — they populate for US stocks during extended-hours windows and return `null` on listings that don't trade outside the regular session, so treat them as optional in your downstream logic.
- **Check the `found` flag** — a misspelled ticker, or one that isn't listed in the country you chose, comes back with `found: false` (plus a short `message` when a country was set) instead of failing the run or returning a wrong-exchange match; filter on this field to separate matched stocks from misses.
- **Use the country dropdown over guessing** — the country selector covers 46 markets with clean labels, so you never have to remember an exchange code. When a ticker isn't listed in the country you pick, the row comes back with `found: false` and a short note instead of a wrong-exchange match — try removing the country to get the primary listing.
- **Schedule recurring runs for fresh quotes** — price, change percent, volume, and extended-hours fields reflect the moment of retrieval, so run on a schedule to keep dashboards current.
- **`marketCap` is a raw number** — it's the full value (e.g. `3470000000000`), not an abbreviated string like `3.47T`, so it's ready for sorting and math without parsing.

### Pricing

**$5.00 per 1,000 results** — clean, predictable pay-per-result that undercuts comparable Investing.com stock data tools by roughly 29%.

| Results | Estimated Cost |
|---------|----------------|
| 100 | $0.50 |
| 1,000 | $5.00 |
| 10,000 | $50.00 |
| 100,000 | $500.00 |

A "result" is one stock record in the output dataset — one per ticker you submit, so your cost is fully predictable from your input list. No compute charges — you only pay per result returned. Platform fees (storage and usage tied to your Apify plan) are additional.

### Integrations

Export data in JSON, CSV, Excel, XML, or RSS. Connect to 1,500+ apps via:

- **Zapier** / **Make** / **n8n** — Workflow automation
- **Google Sheets** — Direct spreadsheet export
- **Slack** / **Email** — Notifications on new results
- **Webhooks** — Trigger custom APIs on run completion
- **Apify API** — Full programmatic access

### Legal & Ethical Use

This actor is designed for legitimate investment research, market analysis, and financial application development. Users are responsible for complying with applicable laws and Investing.com's Terms of Service. Market data is provided for informational purposes only and is not investment advice. Do not use extracted data to mislead, manipulate markets, or for any illegal purpose.

# Actor input Schema

## `stockSymbols` (type: `array`):

One or more stock ticker symbols to look up, such as 'AAPL', 'MSFT', or 'BBVA'. Each symbol returns one result.

## `country` (type: `string`):

Country where the stocks are listed. Helps pick the right listing when the same ticker exists on multiple exchanges. Defaults to the United States.

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

Proxy settings used to fetch data reliably. The default works for most runs.

## Actor input object example

```json
{
  "stockSymbols": [
    "AAPL"
  ],
  "country": "united states",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

Key stock fields: symbol, company, price, change, and market cap.

# 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 = {
    "stockSymbols": [
        "AAPL"
    ],
    "country": "united states",
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("solidcode/investing-com-stock-data-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 = {
    "stockSymbols": ["AAPL"],
    "country": "united states",
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("solidcode/investing-com-stock-data-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 '{
  "stockSymbols": [
    "AAPL"
  ],
  "country": "united states",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call solidcode/investing-com-stock-data-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Investing.com Stock Data Scraper",
        "description": "[💰 $5.0 / 1K] Extract fundamental and quote data for stocks on Investing.com by ticker symbol — price, change, market cap, P/E, EPS, dividend yield, 52-week range, extended-hours pricing, and company profile.",
        "version": "1.0",
        "x-build-id": "5fRhZ3PcwnHjLEdHl"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/solidcode~investing-com-stock-data-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-solidcode-investing-com-stock-data-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/solidcode~investing-com-stock-data-scraper/runs": {
            "post": {
                "operationId": "runs-sync-solidcode-investing-com-stock-data-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/solidcode~investing-com-stock-data-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-solidcode-investing-com-stock-data-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": {
                    "stockSymbols": {
                        "title": "Stock Symbols",
                        "type": "array",
                        "description": "One or more stock ticker symbols to look up, such as 'AAPL', 'MSFT', or 'BBVA'. Each symbol returns one result.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "country": {
                        "title": "Country",
                        "enum": [
                            "united states",
                            "united kingdom",
                            "canada",
                            "australia",
                            "germany",
                            "france",
                            "spain",
                            "italy",
                            "netherlands",
                            "belgium",
                            "portugal",
                            "switzerland",
                            "austria",
                            "sweden",
                            "norway",
                            "denmark",
                            "finland",
                            "poland",
                            "ireland",
                            "greece",
                            "ukraine",
                            "japan",
                            "china",
                            "hong kong",
                            "south korea",
                            "taiwan",
                            "singapore",
                            "india",
                            "indonesia",
                            "malaysia",
                            "thailand",
                            "philippines",
                            "brazil",
                            "mexico",
                            "argentina",
                            "chile",
                            "colombia",
                            "peru",
                            "south africa",
                            "saudi arabia",
                            "united arab emirates",
                            "turkey",
                            "israel",
                            "egypt",
                            "qatar",
                            "new zealand"
                        ],
                        "type": "string",
                        "description": "Country where the stocks are listed. Helps pick the right listing when the same ticker exists on multiple exchanges. Defaults to the United States.",
                        "default": "united states"
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings used to fetch data reliably. The default works for most runs.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
