# Flippa Data Scraper (`saregaa/flippa-scraper`) Actor

Scrape all available fields from Flippa listings: price, profit, revenue multiples, traffic, verified badges, seller info and more.

- **URL**: https://apify.com/saregaa/flippa-scraper.md
- **Developed by:** [Saregaa](https://apify.com/saregaa) (community)
- **Categories:** E-commerce, Lead generation, Real estate
- **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

## Flippa Data Scraper

Extract structured data from [Flippa.com](https://flippa.com) listings — the world's largest marketplace for buying and selling online businesses.

Supports two modes: scrape the **entire Flippa platform** in one run, or paste any **custom search URL** with your own filters (category, price, revenue, sale method, and more).

No login required. Returns the full JSON data that Flippa serves to its own frontend.

---

### Features

- **Full platform scrape** — ~6,300+ active listings in one run
- **Custom filtered search** — paste any Flippa search URL with your filters applied
- **Maximum data** — returns the complete JSON payload Flippa uses internally (50+ fields)
- **Pagination handled automatically** — no manual page management needed
- **Smart limits** — if your Max Results exceeds what Flippa has, it collects everything and stops cleanly (no wasted requests)
- **Run metadata saved** — scrape statistics stored to Key-Value Store after every run
- **Apify Proxy support** — built-in proxy rotation to avoid blocks

---

### Input

| Parameter              | Type    | Description                                                                                  |
| ---------------------- | ------- | -------------------------------------------------------------------------------------------- |
| `mode`               | string  | `SCRAPE_ALL` — scrape entire Flippa. `CUSTOM_URLS` — use your own filtered search URLs |
| `startUrls`          | array   | Your Flippa search URLs (only used in `CUSTOM_URLS` mode)                                  |
| `maxResults`         | integer | Max listings to collect globally.`0` = no limit (collect everything)                       |
| `proxyConfiguration` | object  | Apify Proxy settings (recommended)                                                           |

#### How to get a custom search URL

1. Go to [flippa.com/search](https://flippa.com/search)
2. Apply your filters (category, sale method, price range, revenue, etc.)
3. Copy the URL from your browser address bar
4. Paste it into **Start URLs**

The URL will look like:

````

https://flippa.com/search?filter%5Bproperty\_type%5D=saas\&filter%5Bstatus%5D=open\&filter%5Bsale\_method%5D=classified\&search\_template=most\_relevant

````

#### Example Input Configuration (JSON)

```json
{
  "mode": "CUSTOM_URLS",
  "startUrls": [
    {
      "url": "https://flippa.com/search?filter%5Bproperty_type%5D=saas"
    }
  ],
  "maxResults": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
````

***

### 📦 Output

Each listing is saved as a separate record in the Apify Dataset (downloadable as JSON, CSV, or Excel).

#### Example record

```json
{
  "id": "12668272",
  "listing_url": "https://flippa.com/12668272",
  "title": "Premium Fashion | Operationally Optimized | US$3.7M Pro Forma Revenue | 47% Europe, 26% US and growing | 27% Rest of World",
  "summary": "Premium Fashion | Operationally Optimized | US$3.7M Pro Forma Revenue | 47% Europe, 26% US and growing | 27% Rest of World",
  "has_verified_traffic": true,
  "has_verified_revenue": false,
  "price": 3000000,
  "bid_count": 0,
  "sale_method": "classified",
  "status": "open",
  "category": "Design and Style",
  "monetization": "Ecommerce",
  "profit_average": "70,795",
  "end_at": "2027-03-25T01:18:19+00:00",
  "super_seller": false,
  "broker_seller": true,
  "sponsored": true,
  "editors_choice": true,
  "multiple": 3.5,
  "has_multiple?": true,
  "revenue_multiple": 0.8,
  "target_raise_amount": null,
  "ttm_revenue": null,
  "confidential": true,
  "primary_platform": null,
  "property_name": "Sign NDA to view more details →",
  "established_at": 7,
  "country_name": "CA, United States",
  "ready_made": false,
  "thumbnail_url": "https://static.flippa.com/assets/search/placeholders/ecommerce-10f4c697f0c0d1666468627a72edab6043d55242f2164fd70dc293b1938f4057.svg",
  "default_image": "https://static.flippa.com/assets/search/placeholders/ecommerce-10f4c697f0c0d1666468627a72edab6043d55242f2164fd70dc293b1938f4057.svg",
  "blurred_image_url": "https://static2.flippa.com/blurred_thumbnail_006274cd-db16-e7b8-e399-514e284d1706.jpg",
  "property_type": "Ecommerce",
  "uniques_per_month": 17154,
  "age_label": "Site Age",
  "formatted_age_in_years": "7 years",
  "sale_method_title": "Asking Price",
  "integrations": [
    "google_analytics"
  ],
  "currency_label": "USD $",
  "protect_listing": false,
  "display_verification_badge": true,
  "manually_vetted": false,
  "early_access_listing": false,
  "special_tags": true,
  "hover_image_url": "https://static2.flippa.com/blurred_thumbnail_006274cd-db16-e7b8-e399-514e284d1706.jpg",
  "basic_info": {
    "name": "Ecommerce | Design and Style",
    "hover_image": "https://static2.flippa.com/blurred_thumbnail_006274cd-db16-e7b8-e399-514e284d1706.jpg",
    "padlocked": true
  },
  "open_listing": false,
  "annual_organic_traffic": 28251,
  "revenue_average": 307799,
  "authority_score": 30,
  "managed_by_flippa": false,
  "original_price": null,
  "price_dropped": false,
  "badges": [
    {
      "text": "Broker",
      "icon": "icons/library/solid/user-circle.svg",
      "variant": "light_gray"
    }
  ],
  "key_data": [
    { "label": "Type", "value": "Ecommerce" },
    { "label": "Industry", "value": "Design and Style" },
    { "label": "Monetization", "value": "Ecommerce" },
    { "label": "Site Age", "value": "7 years" },
    { "label": "Net Profit", "value": "USD $70,795 p/mo" }
  ],
  "action_button_text": "View Listing",
  "price_text": "USD $3,000,000"
}
```

#### Full list of output fields

| Field                          | Description                                                     |
| ------------------------------ | --------------------------------------------------------------- |
| `id`                         | Flippa listing ID                                               |
| `listing_url`                | Direct link to the listing                                      |
| `title`                      | Listing title                                                   |
| `summary`                    | Listing summary (usually matches title)                         |
| `property_type`              | Type: SaaS, Ecommerce, App, Newsletter, etc.                    |
| `property_name`              | Display name (may be hidden behind NDA)                         |
| `category`                   | Industry category                                               |
| `monetization`               | Revenue model                                                   |
| `primary_platform`           | Primary platform (if applicable)                                |
| `price`                      | Current asking/auction price (USD)                              |
| `price_text`                 | Formatted price string                                          |
| `original_price`             | Price before drop (if applicable)                               |
| `price_dropped`              | Whether price was reduced                                       |
| `sale_method`                | `classified` (fixed price) or `auction`                     |
| `sale_method_title`          | Human-readable sale method label                                |
| `bid_count`                  | Number of bids (auctions only)                                  |
| `profit_average`             | Average monthly net profit                                      |
| `revenue_average`            | Average monthly revenue (USD)                                   |
| `ttm_revenue`                | Trailing twelve months revenue                                  |
| `multiple`                   | Profit multiple                                                 |
| `has_multiple?`              | Whether profit multiple is available                            |
| `revenue_multiple`           | Revenue multiple                                                |
| `target_raise_amount`        | Target raise (for fundraising listings)                         |
| `uniques_per_month`          | Monthly unique visitors                                         |
| `annual_organic_traffic`     | Annual organic traffic                                          |
| `authority_score`            | Domain authority score                                          |
| `has_verified_traffic`       | Traffic independently verified                                  |
| `has_verified_revenue`       | Revenue independently verified                                  |
| `display_verification_badge` | Whether verification badge is shown                             |
| `manually_vetted`            | Vetted by Flippa team                                           |
| `managed_by_flippa`          | Listed under Flippa brokerage                                   |
| `super_seller`               | Seller has Super Seller status                                  |
| `broker_seller`              | Listed by a broker                                              |
| `country_name`               | Seller country                                                  |
| `currency_label`             | Currency used (e.g. USD $)                                      |
| `status`                     | Listing status (open, closed, etc.)                             |
| `established_at`             | Business age in years                                           |
| `formatted_age_in_years`     | Human-readable age string                                       |
| `age_label`                  | Age label shown on card                                         |
| `confidential`               | Whether listing details are hidden (NDA required)               |
| `end_at`                     | Listing expiry / auction end date                               |
| `sponsored`                  | Sponsored listing                                               |
| `editors_choice`             | Marked as Editor's Choice                                       |
| `special_tags`               | Whether listing has special tags                                |
| `early_access_listing`       | Early access listing flag                                       |
| `ready_made`                 | Ready-made listing flag                                         |
| `protect_listing`            | Listing protection flag                                         |
| `open_listing`               | Whether listing is fully open                                   |
| `integrations`               | Connected analytics (e.g. Google Analytics) — array of strings |
| `badges`                     | Display badges with text and variant — array of objects ⚠️   |
| `key_data`                   | Summary key metrics shown on the card — array of objects ⚠️  |
| `basic_info`                 | Nested object with name, image, padlock status ⚠️             |
| `thumbnail_url`              | Listing thumbnail image URL                                     |
| `default_image`              | Default image URL                                               |
| `blurred_image_url`          | Blurred preview image URL                                       |
| `hover_image_url`            | Hover state image URL                                           |
| `action_button_text`         | CTA button label (e.g. "View Listing")                          |

> ⚠️ Fields marked with ⚠️ are nested objects or arrays of objects and will not render correctly in CSV/Excel exports — use JSON for full data.

***

### 📊 Run Metadata

After every successful run, the scraper writes summary statistics to the Key-Value Store under the key `RUN_METADATA`:

```json
{
  "targetMaxResults": 150,
  "totalScraped": 150,
  "totalRequestsMade": 2
}
```

| Field                 | Description                             |
| --------------------- | --------------------------------------- |
| `targetMaxResults`  | The `maxResults` value you configured |
| `totalScraped`      | Actual number of listings collected     |
| `totalRequestsMade` | Total API requests made to Flippa       |

***

### Usage examples

#### Scrape all active Flippa listings

Set mode to **Scrape all Flippa listings**, set Max Results to `0`. The actor will collect all ~6,300 open listings automatically.

#### Scrape only SaaS businesses for sale

Set mode to **Use custom search URLs**, paste:

```
https://flippa.com/search?filter%5Bproperty_type%5D=saas&filter%5Bstatus%5D=open&filter%5Bsale_method%5D=classified&search_template=most_relevant
```

#### Scrape auctions with verified revenue

Apply the filters on Flippa, copy the URL, paste it in. The scraper passes your filters directly to Flippa's API — no re-configuration needed on your end.

***

### Notes

- Listings marked as **confidential** will have limited data (title and price visible, domain/metrics hidden behind NDA)
- The scraper collects data from Flippa's public search API — no account or login required
- Recommended: enable **Apify Proxy** to avoid rate limiting on large runs

# Actor input Schema

## `mode` (type: `string`):

Choose whether to scrape the entire platform or use specific filtered search URLs.

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

Paste your Flippa search URLs here (e.g. https://flippa.com/search?...). Only applicable if 'Use custom search URLs' mode is selected.

## `maxResults` (type: `integer`):

Maximum total number of listings to scrape globally across all URLs. Set to 0 to scrape everything without limits.

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

Select Apify Proxy to avoid IP blocking (highly recommended).

## Actor input object example

```json
{
  "mode": "SCRAPE_ALL",
  "startUrls": [
    {
      "url": "https://flippa.com/search?filter%5Bproperty_type%5D=saas"
    }
  ],
  "maxResults": 1000,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

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

No description

## `runMetadata` (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 = {
    "startUrls": [
        {
            "url": "https://flippa.com/search?filter%5Bproperty_type%5D=saas"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("saregaa/flippa-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 = {
    "startUrls": [{ "url": "https://flippa.com/search?filter%5Bproperty_type%5D=saas" }],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("saregaa/flippa-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 '{
  "startUrls": [
    {
      "url": "https://flippa.com/search?filter%5Bproperty_type%5D=saas"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call saregaa/flippa-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Flippa Data Scraper",
        "description": "Scrape all available fields from Flippa listings: price, profit, revenue multiples, traffic, verified badges, seller info and more.",
        "version": "1.0",
        "x-build-id": "CrV0KQpC5apBVx6Ay"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/saregaa~flippa-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-saregaa-flippa-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/saregaa~flippa-scraper/runs": {
            "post": {
                "operationId": "runs-sync-saregaa-flippa-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/saregaa~flippa-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-saregaa-flippa-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": [
                    "mode",
                    "maxResults"
                ],
                "properties": {
                    "mode": {
                        "title": "Scraping Mode",
                        "enum": [
                            "SCRAPE_ALL",
                            "CUSTOM_URLS"
                        ],
                        "type": "string",
                        "description": "Choose whether to scrape the entire platform or use specific filtered search URLs.",
                        "default": "SCRAPE_ALL"
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Paste your Flippa search URLs here (e.g. https://flippa.com/search?...). Only applicable if 'Use custom search URLs' mode is selected.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxResults": {
                        "title": "Max Results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum total number of listings to scrape globally across all URLs. Set to 0 to scrape everything without limits.",
                        "default": 1000
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Select Apify Proxy to avoid IP blocking (highly recommended)."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
