# BambooHR Jobs Scraper (`devilscrapes/bamboohr-jobs-scraper`) Actor

Scrape every open job posting from any BambooHR-powered company career site via BambooHR's own public JSON endpoints, no login or browser required. Get titles, locations, departments, and full descriptions, ready for recruiter pipelines or as a hiring-intent signal.

- **URL**: https://apify.com/devilscrapes/bamboohr-jobs-scraper.md
- **Developed by:** [DevilScrapes](https://apify.com/devilscrapes) (community)
- **Categories:** Jobs
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 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/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

<div align="center">
  <img src=".actor/icon.svg" width="160" alt="Devil Scrapes mark" />

## BambooHR Jobs Scraper

**💰 $1.50 / 1 000 results** &nbsp;·&nbsp; pay only for results &nbsp;·&nbsp; no credit card to try

_We do the dirty work so your dataset stays clean._ 😈

Scrape every open job posting from any BambooHR-powered company career site (`{subdomain}.bamboohr.com/careers`) through BambooHR's own careers JSON endpoints — no login, no per-company setup. Feed it subdomains or career-site URLs and get titles, departments, locations, posting dates, and optional full descriptions as clean typed rows.

</div>

---

### 🎯 What this scrapes

BambooHR is one of the most widely deployed SMB HR platforms, and every company running a public careers page on it shares the same JSON contract: a `/careers/list` endpoint that returns the current open-postings feed, and a `/careers/{id}/detail` endpoint that returns the full posting body. This Actor talks to both directly: point it at one or more BambooHR subdomains — bare (`adobe`) or a full `https://adobe.bamboohr.com/careers` URL — and it pulls every open job, optionally fetches each posting's full description, and normalizes everything into one row schema across every tenant you throw at it.

### 🔥 Features

- 🛡️ **Browser fingerprint rotation** — `curl-cffi` rotates real Chrome / Firefox TLS and HTTP/2 handshakes across requests, so every call looks like a browser, never a bare Python client.
- 🔁 **Retries with exponential backoff** on `408 / 429 / 5xx`, up to 5 attempts, `Retry-After` honoured — a company that hiccups mid-run doesn't take the whole job down with it.
- 🌐 **Proxy session rotation** via Apify Proxy — a fresh session and exit IP whenever a request needs one, at no extra step for you.
- 🏢 **Per-company failure isolation** — an unclaimed subdomain or a company with zero current openings just returns zero rows; one bad entry in a batch never sinks the others.
- 📝 **Optional full descriptions** — flip `fetchFullDescription` on for the complete HTML body plus status, country, and posting date; leave it off for a fast titles-and-locations pull.
- 🧊 **Clean, typed rows** — Pydantic-validated, ISO-8601 timestamps, stable job IDs. Export JSON / CSV / Excel straight from the Apify Console.
- 💰 **Pay only for results that land** — a job that a company genuinely has zero of costs nothing beyond the flat per-run warm-up fee.

### 💡 Use cases

- **Recruiting & sourcing** — build a pipeline against every employer running BambooHR, in one normalized schema.
- **Hiring-intent signal for sales & BD** — open reqs surface headcount growth, new-market entry, and tech-stack shifts before they hit the news.
- **Job-board aggregation** — add BambooHR coverage alongside Workday, SmartRecruiters, Greenhouse, Lever, Ashby, Workable, and Teamtailor in one pipeline.
- **Labor-market & HR-tech research** — sample hiring demand across an industry, region, or company size band.
- **Competitive-intel tracking** — watch a competitor's live openings to infer team growth and roadmap direction.

### ⚙️ How to use it

1. Click **Try for free** at the top of the Store listing.
2. Add one or more entries to **Companies** — a bare subdomain like `adobe`, or a full `https://adobe.bamboohr.com/careers` URL.
3. Optionally set **Max jobs per company** and toggle **Fetch full description**.
4. Click **Start**. Rows stream into the dataset as each company's board is fetched.
5. Export from **Storage → Dataset** as JSON, CSV, or Excel — or pull via the Apify API.

### 📥 Input

| Field | Type | Required | Default | Notes |
|---|---|:--:|---|---|
| `companies` | `array` | ✅ | — | 1–1000 entries: bare BambooHR subdomain (`"adobe"`) or full `https://{subdomain}.bamboohr.com` URL. A custom-domain URL is rejected — use the bare subdomain instead. |
| `maxJobsPerCompany` | `integer` | no | `100` | Cap rows emitted per company, applied after parsing (1–5000). |
| `fetchFullDescription` | `boolean` | no | `true` | Fetches `/careers/{id}/detail` per job to populate `job_status`, `location_country`, `date_posted`, `description_html`, and `description_text`. Off = faster, cheaper runs; those five fields stay `null`. |
| `proxyConfiguration` | `object` | no | `{"useApifyProxy": true}` | Apify Proxy configuration. |

#### Example input

```json
{
  "companies": ["adobe", "nycballet"],
  "maxJobsPerCompany": 10,
  "fetchFullDescription": true,
  "proxyConfiguration": { "useApifyProxy": true }
}
````

### 📤 Output

One dataset item per job posting. Fields marked **(detail)** are populated only when `fetchFullDescription` is on.

| Field | Type | Notes |
|---|---|---|
| `company` | `string` | Normalized input subdomain (not any display name) — stays stable across repeated runs. |
| `job_id` | `integer` | BambooHR's numeric posting ID. |
| `job_title` | `string` | Posting title. |
| `job_url` | `string` | Public posting URL — always populated, even with descriptions off. |
| `department` | `string \| null` | Department label, when set. |
| `employment_type` | `string \| null` | e.g. `Full-Time`, when set. |
| `job_status` | `string \| null` | e.g. `Open` **(detail)**. |
| `location_city` | `string \| null` | Primary listed city. |
| `location_state` | `string \| null` | Primary listed state/region. |
| `location_country` | `string \| null` | Full country name **(detail)**. |
| `is_remote` | `boolean \| null` | Tri-state — `null` means the employer left it unspecified, not "on-site." |
| `date_posted` | `date \| null` | ISO `YYYY-MM-DD` **(detail)**. |
| `description_html` | `string \| null` | Full posting body, verbatim HTML **(detail)**. |
| `description_text` | `string \| null` | Same body with HTML tags stripped **(detail)**. |
| `scraped_at` | `datetime` | UTC ISO-8601 fetch timestamp. |

#### Example output

```json
{
  "company": "adobe",
  "job_id": 15,
  "job_title": "IT Security Engineer",
  "job_url": "https://adobe.bamboohr.com/careers/15",
  "department": "IT",
  "employment_type": "Full-Time",
  "job_status": "Open",
  "location_city": "Mayfair",
  "location_state": "London, City of",
  "location_country": "United Kingdom",
  "is_remote": null,
  "date_posted": "2025-11-29",
  "description_html": "<p><strong>About Us</strong></p>...",
  "description_text": "About Us Our mission is simple...",
  "scraped_at": "2026-07-26T12:00:00Z"
}
```

### 💰 Pricing

Pay-Per-Event — you're charged only when these fire:

| Event | USD | What it covers |
|---|---:|---|
| `actor-start` | $0.005 | One-off warm-up per run |
| `result` | $0.0015 | Per job posting written to the dataset |

**Example**: 1 000 postings ≈ **$1.51**. No subscription, no minimum, no card to start — Apify gives every new account $5 of free credit.

### 🚧 Limitations

- **Only `bamboohr.com` subdomains** — a company that fronts its BambooHR careers page with a custom domain isn't resolvable; point this Actor at the underlying `{subdomain}.bamboohr.com` address instead.
- **No compensation field** — BambooHR's public feed doesn't expose structured salary data on any company we've checked, so we don't invent it.
- **Descriptions cost an extra fetch** — `fetchFullDescription` adds one detail request per posting (it changes runtime, not the per-result price). Leave it off for the fastest pull.
- **No discovery mode** — you supply the subdomains; this Actor doesn't crawl a directory of BambooHR customers.
- **Point-in-time snapshot** — returns each company's board as it stands right now; schedule recurring runs to track changes over time.

### ❓ FAQ

**Do I need a BambooHR account or API key?** No — every field comes from BambooHR's own careers-page JSON feed, the same one the public career site itself loads.

**Does one run handle several companies?** Yes. List every subdomain in `companies` (up to 1 000) and every row comes back identically shaped, tagged with `company`.

**What happens if a subdomain doesn't exist or has zero open jobs?** Both are normal outcomes, not errors — you get zero rows for that company and the run keeps going, with a status message summarizing how many companies had openings.

**Why doesn't `maxJobsPerCompany` change the price?** You're charged per row written, not per HTTP call — capping results just controls dataset size, not the per-result rate.

**Is this legal?** We fetch public, unauthenticated job-posting data that employers publish for candidates to browse. No login, no private endpoints.

### 💬 Your feedback

Spotted a bug, hit a company that behaves differently, or need an extra field? Open an issue on the Actor's **Issues** tab in Apify Console — we ship fixes weekly and read every report.

***

<div align="center">

Built by **[Devil Scrapes](https://apify.com/DevilScrapes)** 😈 — a small fleet of
opinionated public-data Actors. Honest pricing, real engineering, zero fine print.

</div>

### 🔗 Related Devil Scrapes Actors

Hiring intel across the whole ATS landscape? These siblings cover the other major job-board platforms — same keyless, pay-per-result approach:

- [Teamtailor Jobs Scraper](https://apify.com/DevilScrapes/teamtailor-jobs-scraper) — postings from any Teamtailor-hosted employer board
- [Workable Jobs Scraper](https://apify.com/DevilScrapes/workable-jobs-scraper) — postings from any Workable-hosted employer board
- [SmartRecruiters Jobs Scraper](https://apify.com/DevilScrapes/smartrecruiters-jobs-scraper) — postings from any SmartRecruiters-hosted employer
- [Workday Jobs Scraper](https://apify.com/DevilScrapes/workday-jobs-scraper) — postings from any Workday-powered career site
- [Multi-ATS Jobs Scraper](https://apify.com/DevilScrapes/multi-ats-jobs-scraper) — one normalized feed across Greenhouse, Lever & Ashby

Browse the full fleet at [apify.com/DevilScrapes](https://apify.com/DevilScrapes).

# Actor input Schema

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

Bare BambooHR subdomain, e.g. "adobe" (the employer identifier in https://{subdomain}.bamboohr.com/careers), or a full https://{subdomain}.bamboohr.com URL (with or without a trailing /careers path) — the subdomain is regex-extracted. A plain string with no "bamboohr.com" substring is used as the literal subdomain; a custom-domain URL is rejected — use the bare {subdomain}.bamboohr.com subdomain instead.

## `maxJobsPerCompany` (type: `integer`):

Cap job postings emitted per companies entry, applied after parsing.

## `fetchFullDescription` (type: `boolean`):

When enabled, fetches /careers/{id}/detail per job to populate job\_status, location\_country, date\_posted, description\_html, and description\_text. When disabled, those five fields stay null and the detail call is never issued (cheaper, faster runs).

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

Apify Proxy configuration. No anti-bot behaviour has been observed on BambooHR's public careers JSON endpoints, so the standard (non-residential) group is enough.

## Actor input object example

```json
{
  "companies": [
    "adobe",
    "nycballet"
  ],
  "maxJobsPerCompany": 100,
  "fetchFullDescription": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `datasetItems` (type: `string`):

All dataset items as JSON.

## `datasetItemsCsv` (type: `string`):

Same data exported to CSV.

## `datasetView` (type: `string`):

Open the run dataset in the Console.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

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

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "companies": [
        "adobe",
        "nycballet"
    ],
    "maxJobsPerCompany": 100,
    "fetchFullDescription": true,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("devilscrapes/bamboohr-jobs-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 = {
    "companies": [
        "adobe",
        "nycballet",
    ],
    "maxJobsPerCompany": 100,
    "fetchFullDescription": True,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("devilscrapes/bamboohr-jobs-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 '{
  "companies": [
    "adobe",
    "nycballet"
  ],
  "maxJobsPerCompany": 100,
  "fetchFullDescription": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call devilscrapes/bamboohr-jobs-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "BambooHR Jobs Scraper",
        "description": "Scrape every open job posting from any BambooHR-powered company career site via BambooHR's own public JSON endpoints, no login or browser required. Get titles, locations, departments, and full descriptions, ready for recruiter pipelines or as a hiring-intent signal.",
        "version": "0.0",
        "x-build-id": "wdZwZYn7zPRdKjerd"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/devilscrapes~bamboohr-jobs-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-devilscrapes-bamboohr-jobs-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/devilscrapes~bamboohr-jobs-scraper/runs": {
            "post": {
                "operationId": "runs-sync-devilscrapes-bamboohr-jobs-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/devilscrapes~bamboohr-jobs-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-devilscrapes-bamboohr-jobs-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": [
                    "companies"
                ],
                "properties": {
                    "companies": {
                        "title": "Companies",
                        "minItems": 1,
                        "maxItems": 1000,
                        "type": "array",
                        "description": "Bare BambooHR subdomain, e.g. \"adobe\" (the employer identifier in https://{subdomain}.bamboohr.com/careers), or a full https://{subdomain}.bamboohr.com URL (with or without a trailing /careers path) — the subdomain is regex-extracted. A plain string with no \"bamboohr.com\" substring is used as the literal subdomain; a custom-domain URL is rejected — use the bare {subdomain}.bamboohr.com subdomain instead."
                    },
                    "maxJobsPerCompany": {
                        "title": "Max jobs per company",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Cap job postings emitted per companies entry, applied after parsing.",
                        "default": 100
                    },
                    "fetchFullDescription": {
                        "title": "Fetch full description",
                        "type": "boolean",
                        "description": "When enabled, fetches /careers/{id}/detail per job to populate job_status, location_country, date_posted, description_html, and description_text. When disabled, those five fields stay null and the detail call is never issued (cheaper, faster runs).",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify Proxy configuration. No anti-bot behaviour has been observed on BambooHR's public careers JSON endpoints, so the standard (non-residential) group is enough.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
