# Eventbrite Scraper - Events, Dates & Organizers (`flash_scraper/eventbrite-events-scraper`) Actor

Scrape Eventbrite events by city, category or URL — title, ISO start/end dates, venue, address, online flag, parsed price (free flag + min/max + currency), organizer, category, tags & image. Dedup, upcoming-first sort, clean flat rows. Build event lists. Export CSV/JSON/Excel.

- **URL**: https://apify.com/flash\_scraper/eventbrite-events-scraper.md
- **Developed by:** [Flash Scrape](https://apify.com/flash_scraper) (community)
- **Categories:** Lead generation, Travel, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.000035 / actor start

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Eventbrite Events Scraper — city & category event data with parsed prices and organizers

**Turn any Eventbrite city or category search into a clean event list.** This Eventbrite scraper returns one flat row per event: title, ISO start/end dates, venue and full address with coordinates, an online flag, a **parsed price** (free flag + min/max + currency), organizer name and URL, category, format, tags, ticket availability, image, and the event URL. Built for event marketers, sponsors, promoters, lead-gen teams, and researchers who want Eventbrite event data as a spreadsheet — not a nested scrape they have to flatten themselves. **Pay-per-result** ($5.50 per 1,000 events), **no Eventbrite account and no API key**.

### What it does

- **Scrapes Eventbrite two ways**: give it a **city slug** (e.g. `ny--new-york`) with optional category/date/format/price/online filters, or paste **search and event-page URLs** into `searchUrls` for full control. Events are fetched through the [`parseforge/eventbrite-scraper`](https://apify.com/parseforge/eventbrite-scraper) data provider.
- **Parses prices into numbers**: each event gets `isFree`, `priceMin`, `priceMax`, and `currency` — derived from Eventbrite's structured pricing when available, or parsed from the display text (`"$20 - $45"`) when it isn't — alongside the raw `priceDisplay`.
- **Normalizes dates to ISO** (`startDate`, `startDateTime`, `endDateTime`, `timezone`) so events sort correctly in any spreadsheet.
- **Composes a full venue address** from street, city, state, postal code, and country, plus `latitude`/`longitude` and an `isOnline` flag for virtual events.
- **Captures demand signals**: `ticketsAvailable`, `isSoldOut`, an `isSellingFast` flag derived from Eventbrite's urgency indicators, plus `attendeeCount` and `capacity` when published.
- **Enriches organizers** (`retrieveOrganizerData`, on by default) so you get the organizer name and URL for outreach.
- **Dedupes by event ID**, applies your `dateFrom`/`dateTo` window, and sorts everything **upcoming-first**.

### Use cases

- **Sponsorship & event lead lists** — pull every business or music event in a city this month, with organizer names and URLs to pitch.
- **Competitive and market research** — track what events run in your category, when, and at what ticket prices.
- **Event aggregators & newsletters** — populate a niche events calendar with clean, deduped rows on a schedule.
- **Demand and pricing analysis** — compare `priceMin`/`priceMax`, sold-out rates, and selling-fast flags across a category.
- **Venue prospecting** — map where events in your niche actually happen using the venue coordinates.

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `searchUrls` | array | `[]` | Eventbrite search or event-page URLs to scrape directly — the most flexible mode. |
| `city` | string | `"ny--new-york"` | Eventbrite city **slug** (not free text) — e.g. `ca--san-francisco`, `united-kingdom--london`. |
| `category` | string | `""` | Category filter: `music`, `business`, `food-and-drink`, `community`, `performing-arts`, `film-and-media`, `sports-and-fitness`, `health`, `science-and-tech`, `travel-and-outdoor`, `charity-and-causes`, `religion-and-spirituality`, `family-and-education`, `fashion`, `home-and-lifestyle`, `hobbies`, or empty for any. |
| `date` | string | `""` | `today`, `this-weekend`, `this-week`, `this-month`, or empty for any time. |
| `format` | string | — | Event format (e.g. conference, festival, seminar, networking). |
| `price` | string | `""` | `free`, `paid`, or empty for any. |
| `online` | boolean | `false` | Restrict to online-only events. |
| `retrieveOrganizerData` | boolean | `true` | Extra request per organizer to enrich organizer details (slightly slower). |
| `maxItems` | integer | `100` | Maximum events to return (1–5000). |
| `dateFrom` | string | — | Keep only events on/after `YYYY-MM-DD` (applied after scraping). |
| `dateTo` | string | — | Keep only events on/before `YYYY-MM-DD` (applied after scraping). |

```json
{
  "city": "ny--new-york",
  "category": "music",
  "date": "this-month",
  "maxItems": 100,
  "retrieveOrganizerData": true
}
````

Provide `searchUrls`, a `city` slug, or `online: true` — everything else has a default.

### Output

One dataset row per event, deduped and sorted soonest-first. Export to CSV, JSON, or Excel from the Output tab.

```json
{
  "title": "Friday Night Jazz at the Blue Room",
  "startDate": "2026-07-10",
  "startDateTime": "2026-07-10T19:00",
  "endDateTime": "2026-07-10T22:00",
  "timezone": "America/New_York",
  "venue": "The Blue Room",
  "address": "123 W 45th St, New York, NY, 10036, United States",
  "city": "New York",
  "region": "NY",
  "country": "United States",
  "postalCode": "10036",
  "latitude": 40.757,
  "longitude": -73.985,
  "isOnline": false,
  "isFree": false,
  "priceMin": 20,
  "priceMax": 45,
  "currency": "USD",
  "priceDisplay": "$20 - $45",
  "ticketsAvailable": true,
  "isSoldOut": false,
  "isSellingFast": false,
  "attendeeCount": null,
  "capacity": null,
  "ageRestriction": null,
  "duration": "3 hours",
  "language": "en",
  "status": "published",
  "organizer": "Blue Room Presents",
  "organizerUrl": "https://www.eventbrite.com/o/9469346654",
  "category": "Music",
  "subcategory": "Jazz",
  "format": "Concert or Performance",
  "tags": ["jazz", "live music"],
  "summary": "An evening of live jazz at sunset…",
  "description": "Join us for an evening of live jazz…",
  "imageUrl": "https://img.evbuc.com/...",
  "eventUrl": "https://www.eventbrite.com/e/friday-night-jazz-1234567890",
  "ticketsUrl": "https://www.eventbrite.com/checkout-external?eid=1234567890",
  "eventId": "1234567890",
  "scrapedAt": "2026-07-03T09:00:00Z"
}
```

Fields an event doesn't publish (capacity, age restriction, etc.) come through as `null`, so your columns stay stable. Long descriptions are trimmed to 1,500 characters.

### Pricing

This actor uses Apify **pay-per-event pricing: $5.50 per 1,000 events** ($0.0055 per result). You're charged only for the cleaned, deduped event rows delivered after your date filters — no subscription, no charge for empty runs. Use `maxItems` to cap cost: a full 5,000-event city pull costs $27.50, and the default 100-event run costs about half a cent. The **free Apify plan is enough to try it** on a real city before paying anything.

### Tips / FAQ

**What exactly is the `city` slug?** Eventbrite's location identifier from its URLs — the part after `/d/` in `eventbrite.com/d/ny--new-york/events/`. It's not free text; if you're unsure, just paste a search URL into `searchUrls` instead.

**Why is the organizer sometimes empty?** Keep `retrieveOrganizerData` on (the default) — it makes one extra request per organizer to fill the name and URL. Turning it off is faster but leaves some organizer fields blank.

**How fresh is the data?** Every run scrapes live — there's no cached snapshot. Schedule the actor to keep an events calendar or lead list current.

**Do I need an Eventbrite account or API key?** No. The actor reads public event pages only, with no login and no key.

**Where does the data come from, and what if the source is down?** Events are fetched via an upstream data provider (`parseforge/eventbrite-scraper`). On a transient upstream outage the run ends gracefully with a "temporarily unavailable — please retry" message and **you're charged nothing**.

**Is scraping Eventbrite legal?** This collects **public** event data only. Follow Eventbrite's terms and local law; the data is intended for research, marketing, and editorial use.

### Related actors

- [Concert & Live Events Scraper](https://apify.com/flash_scraper/concert-events-scraper) — tour dates for any artist, one row per show
- [Local Business Leads Scraper](https://apify.com/flash_scraper/local-business-leads) — venues and local businesses by city for partnership outreach
- [Bulk Email Verifier](https://apify.com/flash_scraper/email-verifier) — verify organizer contact lists before an outreach campaign

**Support:** found a bug or need a feature? Open an Issue on this actor's **Issues tab** — typical response within 1 business day.

# Actor input Schema

## `searchUrls` (type: `array`):

Paste Eventbrite search or event-page URLs to scrape directly — the most flexible mode. e.g. https://www.eventbrite.com/d/ny--new-york/music--events/

## `city` (type: `string`):

Eventbrite city SLUG for search mode (NOT free text) — e.g. 'ny--new-york', 'ca--san-francisco', 'united-kingdom--london'. Find it in an Eventbrite URL.

## `category` (type: `string`):

Limit results to one Eventbrite category, e.g. 'music' or 'food-and-drink'. Leave empty ('Any') to include all categories.

## `date` (type: `string`):

Quick filter for when events take place, e.g. 'this-weekend'. For exact dates use the From/To date fields below instead.

## `format` (type: `string`):

Event format (e.g. conference, festival, seminar, networking). Leave empty for all.

## `price` (type: `string`):

Keep only free or only paid events. Leave empty ('Any') to include both.

## `online` (type: `boolean`):

Restrict results to online/virtual events with no physical venue. Can be used instead of a city.

## `retrieveOrganizerData` (type: `boolean`):

Make an extra request per organizer to enrich organizer details (slightly slower).

## `maxItems` (type: `integer`):

Maximum number of events to return.

## `dateFrom` (type: `string`):

Keep only events on/after this date (YYYY-MM-DD). Optional, applied after scraping.

## `dateTo` (type: `string`):

Keep only events on/before this date (YYYY-MM-DD). Optional, applied after scraping.

## Actor input object example

```json
{
  "searchUrls": [],
  "city": "ny--new-york",
  "category": "",
  "date": "",
  "price": "",
  "online": false,
  "retrieveOrganizerData": true,
  "maxItems": 100
}
```

# Actor output Schema

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

No description

# API

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

## JavaScript example

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

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

// Prepare Actor input
const input = {
    "city": "ny--new-york"
};

// Run the Actor and wait for it to finish
const run = await client.actor("flash_scraper/eventbrite-events-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 = { "city": "ny--new-york" }

# Run the Actor and wait for it to finish
run = client.actor("flash_scraper/eventbrite-events-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 '{
  "city": "ny--new-york"
}' |
apify call flash_scraper/eventbrite-events-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Eventbrite Scraper - Events, Dates & Organizers",
        "description": "Scrape Eventbrite events by city, category or URL — title, ISO start/end dates, venue, address, online flag, parsed price (free flag + min/max + currency), organizer, category, tags & image. Dedup, upcoming-first sort, clean flat rows. Build event lists. Export CSV/JSON/Excel.",
        "version": "0.1",
        "x-build-id": "qpYpWc3NEPQZS8CPa"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/flash_scraper~eventbrite-events-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-flash_scraper-eventbrite-events-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/flash_scraper~eventbrite-events-scraper/runs": {
            "post": {
                "operationId": "runs-sync-flash_scraper-eventbrite-events-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/flash_scraper~eventbrite-events-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-flash_scraper-eventbrite-events-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": {
                    "searchUrls": {
                        "title": "Eventbrite search / event URLs",
                        "type": "array",
                        "description": "Paste Eventbrite search or event-page URLs to scrape directly — the most flexible mode. e.g. https://www.eventbrite.com/d/ny--new-york/music--events/",
                        "default": [],
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "city": {
                        "title": "City slug",
                        "type": "string",
                        "description": "Eventbrite city SLUG for search mode (NOT free text) — e.g. 'ny--new-york', 'ca--san-francisco', 'united-kingdom--london'. Find it in an Eventbrite URL."
                    },
                    "category": {
                        "title": "Category",
                        "enum": [
                            "",
                            "music",
                            "business",
                            "food-and-drink",
                            "community",
                            "performing-arts",
                            "film-and-media",
                            "sports-and-fitness",
                            "health",
                            "science-and-tech",
                            "travel-and-outdoor",
                            "charity-and-causes",
                            "religion-and-spirituality",
                            "family-and-education",
                            "fashion",
                            "home-and-lifestyle",
                            "hobbies"
                        ],
                        "type": "string",
                        "description": "Limit results to one Eventbrite category, e.g. 'music' or 'food-and-drink'. Leave empty ('Any') to include all categories.",
                        "default": ""
                    },
                    "date": {
                        "title": "Date range",
                        "enum": [
                            "",
                            "today",
                            "this-weekend",
                            "this-week",
                            "this-month"
                        ],
                        "type": "string",
                        "description": "Quick filter for when events take place, e.g. 'this-weekend'. For exact dates use the From/To date fields below instead.",
                        "default": ""
                    },
                    "format": {
                        "title": "Format",
                        "type": "string",
                        "description": "Event format (e.g. conference, festival, seminar, networking). Leave empty for all."
                    },
                    "price": {
                        "title": "Price",
                        "enum": [
                            "",
                            "free",
                            "paid"
                        ],
                        "type": "string",
                        "description": "Keep only free or only paid events. Leave empty ('Any') to include both.",
                        "default": ""
                    },
                    "online": {
                        "title": "Online events only",
                        "type": "boolean",
                        "description": "Restrict results to online/virtual events with no physical venue. Can be used instead of a city.",
                        "default": false
                    },
                    "retrieveOrganizerData": {
                        "title": "Enrich organizer data",
                        "type": "boolean",
                        "description": "Make an extra request per organizer to enrich organizer details (slightly slower).",
                        "default": true
                    },
                    "maxItems": {
                        "title": "Max events",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum number of events to return.",
                        "default": 100
                    },
                    "dateFrom": {
                        "title": "From date",
                        "type": "string",
                        "description": "Keep only events on/after this date (YYYY-MM-DD). Optional, applied after scraping."
                    },
                    "dateTo": {
                        "title": "To date",
                        "type": "string",
                        "description": "Keep only events on/before this date (YYYY-MM-DD). Optional, applied after scraping."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
