# F6S Scraper $1💰 Funding, Accelerators, Events & Jobs (`abotapi/f6s-directory-scraper`) Actor

From $1/1K. Extract structured data from F6S.com. Scrape funding programs, startup accelerators, events, and jobs from a single tool. Supports both filter-based searches and F6S URLs, returns 25+ fields per record, and works on all Apify plans using datacenter proxies.

- **URL**: https://apify.com/abotapi/f6s-directory-scraper.md
- **Developed by:** [AbotAPI](https://apify.com/abotapi) (community)
- **Categories:** Jobs, Developer tools, Automation
- **Stats:** 3 total users, 2 monthly users, 66.7% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.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.
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

## F6S Scraper: Programs, Accelerators, Events & Jobs

Extract structured records from F6S in minutes. This scraper covers four F6S directories in one tool: funding programs, startup accelerators, startup events, and startup jobs. It returns 25+ fields per record, supports both filter search and pasted URLs, and runs on the default datacenter connection so it works on every Apify plan.

### Why this scraper?

- Four directories in one actor: programs, accelerators, events, and jobs. Most alternatives only cover programs.
- 25+ fields per record, including investment amount, equity, deadlines, apply links, plus optional full description, funding range, website, social links, and team.
- Two ways to start: pick filters (list type, location, keyword, program type, sort, investment, equity) or paste any F6S list URL.
- Fast: a one-time connection setup, then pages load quickly with concurrent detail enrichment.
- Cost-efficient: the one-time setup is reused across the whole run, so per-record cost stays low and well below typical directory scrapers.
- Clean pagination that walks forward page by page and de-duplicates by ID.

### Data you get

> Sample shape: values are illustrative placeholders, not from a live listing.

| Field | Example |
| --- | --- |
| `id` | `sample-accelerator-2026` |
| `listType` | `accelerators` |
| `name` | `Sample Accelerator 2026` |
| `location` | `London, United Kingdom` |
| `tags` | `Funds Startups in AI, Fintech, SaaS` |
| `verified` | `true` |
| `deadline` | `by Jan 1` |
| `investmentRaw` | `$100k per team` |
| `investmentAmount` | `100000` |
| `investmentCurrency` | `USD` |
| `equityRaw` | `6%` |
| `equityPercent` | `6` |
| `profileUrl` | `https://www.f6s.com/sample-accelerator-2026` |
| `aboutUrl` | `https://www.f6s.com/sample-accelerator-2026/about` |
| `applyUrl` | `https://www.f6s.com/sample-accelerator-2026/apply` |
| `image` | `https://www.f6s.com/content-resource/profiles/00000001_th3.jpg` |
| `description` | `Full program description appears here when fetchDetails is on.` |
| `fundingCurrency` | `USD` |
| `fundingAmountMin` | `100000` |
| `fundingAmountMax` | `100000` |
| `website` | `https://example.com/` |
| `socialLinks` | `["https://www.linkedin.com/company/example/"]` |
| `team` | `[{"name": "Jane Doe", "url": "https://www.f6s.com/jane-doe"}]` |
| `category` | `Accelerators` |
| `country` | `United Kingdom` |
| `city` | `London` |
| `sourceUrl` | `https://www.f6s.com/accelerators` |
| `scrapedAt` | `2026-01-01T00:00:00.000Z` |

### How to use

Basic search (programs worldwide):

```json
{
  "mode": "search",
  "listType": "programs",
  "maxPages": 5,
  "maxListings": 100,
  "proxy": { "useApifyProxy": true }
}
````

Accelerators in a location, with full details:

```json
{
  "mode": "search",
  "listType": "accelerators",
  "location": "london",
  "fetchDetails": true,
  "maxPages": 3,
  "proxy": { "useApifyProxy": true }
}
```

Programs filtered by keyword, type, sort and investment:

```json
{
  "mode": "search",
  "listType": "programs",
  "keyword": "ai",
  "programType": "accelerator",
  "sortBy": "popular",
  "minInvestment": 25000,
  "maxEquity": 8,
  "maxListings": 200,
  "proxy": { "useApifyProxy": true }
}
```

URL mode (paste any F6S list links):

```json
{
  "mode": "url",
  "urls": [
    "https://www.f6s.com/programs/new-york",
    "https://www.f6s.com/events"
  ],
  "maxPages": 5,
  "proxy": { "useApifyProxy": true }
}
```

### Input parameters

| Parameter | Type | Default | Description |
| --- | --- | --- | --- |
| `mode` | string | `search` | `search` builds list URLs from filters; `url` uses pasted links. |
| `listType` | string | `programs` | `programs`, `accelerators`, `events`, or `jobs`. |
| `location` | string | (empty) | Location slug, for example `london` or `europe`. |
| `keyword` | string | (empty) | Free-text keyword, for example `ai`. |
| `programType` | string | `any` | `accelerator`, `incubator`, `grant`, `competition`, `fellowship`. |
| `sortBy` | string | `open` | `open`, `popular`, or `closest` (closing soon). |
| `minInvestment` | integer | (none) | Keep records offering at least this much per team. |
| `maxInvestment` | integer | (none) | Keep records offering at most this much per team. |
| `maxEquity` | integer | (none) | Keep records taking at most this much equity. |
| `urls` | array | (example) | F6S list URLs for URL mode. |
| `fetchDetails` | boolean | `false` | Open each About page for description, funding, website, social, team. |
| `maxPages` | integer | `1` | Result pages to walk per list. |
| `maxListings` | integer | `0` | Stop after this many records (0 = unlimited, the default). |
| `proxy` | object | Apify proxy | Connection settings. Datacenter is the default. |

### Output example

> Sample shape: values are illustrative placeholders, not from a live listing.

```json
{
  "id": "sample-accelerator-2026",
  "listType": "accelerators",
  "name": "Sample Accelerator 2026",
  "slug": "sample-accelerator-2026",
  "profileUrl": "https://www.f6s.com/sample-accelerator-2026",
  "aboutUrl": "https://www.f6s.com/sample-accelerator-2026/about",
  "applyUrl": "https://www.f6s.com/sample-accelerator-2026/apply",
  "image": "https://www.f6s.com/content-resource/profiles/00000001_th3.jpg",
  "location": "London, United Kingdom",
  "tags": "Funds Startups in AI, Fintech, SaaS",
  "verified": true,
  "deadline": "by Jan 1",
  "investmentRaw": "$100k per team",
  "investmentAmount": 100000,
  "investmentCurrency": "USD",
  "equityRaw": "6%",
  "equityPercent": 6,
  "description": "Full program description appears here when fetchDetails is on.",
  "category": "Accelerators",
  "country": "United Kingdom",
  "city": "London",
  "fundingCurrency": "USD",
  "fundingAmountMin": 100000,
  "fundingAmountMax": 100000,
  "website": "https://example.com/",
  "socialLinks": ["https://www.linkedin.com/company/example/"],
  "team": [{ "name": "Jane Doe", "url": "https://www.f6s.com/jane-doe", "image": null }],
  "sourceUrl": "https://www.f6s.com/accelerators",
  "scrapedAt": "2026-01-01T00:00:00.000Z"
}
```

### Plan requirement

This actor runs on every Apify plan using the default datacenter connection. For very large or repeated jobs you can switch the Proxy field to Residential for wider IP rotation (available on Starter and above). Pay-per-result billing applies: a small base rate per record, plus a small surcharge per detail page when `fetchDetails` is on.

# Actor input Schema

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

How to start the scrape. 'search' builds list URLs from the filters below. 'url' takes the exact F6S list URLs you paste.

## `listType` (type: `string`):

Which F6S directory to scrape in search mode.

## `location` (type: `string`):

Optional location slug to narrow results, for example 'london', 'new-york', 'europe'. Leave empty for worldwide.

## `keyword` (type: `string`):

Optional free-text keyword, for example 'ai', 'fintech', 'climate'.

## `programType` (type: `string`):

Narrow programs to a subtype. Only applies when list type is Programs or Accelerators.

## `sortBy` (type: `string`):

Result ordering.

## `minInvestment` (type: `integer`):

Only keep programs offering at least this much per team.

## `maxInvestment` (type: `integer`):

Only keep programs offering at most this much per team.

## `maxEquity` (type: `integer`):

Only keep programs that take at most this much equity.

## `urls` (type: `array`):

Paste one or more F6S list URLs (for example https://www.f6s.com/programs/london). Multi-URL supported. Filter fields above are ignored. Pagination starts at the page in the URL and walks forward.

## `fetchDetails` (type: `boolean`):

Open each profile's About page to add full description, funding amount, website, social links and team. Adds one HTTP request per record.

## `maxPages` (type: `integer`):

How many result pages to walk per list URL.

## `maxListings` (type: `integer`):

Stop after this many records (0 = unlimited).

## `proxy` (type: `object`):

Network connection. The default works on all plans. Datacenter is enough; residential is an optional upgrade for heavier runs.

## Actor input object example

```json
{
  "mode": "search",
  "listType": "programs",
  "programType": "any",
  "sortBy": "open",
  "urls": [
    "https://www.f6s.com/accelerators"
  ],
  "fetchDetails": false,
  "maxPages": 1,
  "maxListings": 0,
  "proxy": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `overview` (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 = {
    "mode": "search",
    "listType": "programs",
    "location": "",
    "keyword": "",
    "programType": "any",
    "sortBy": "open",
    "urls": [
        "https://www.f6s.com/accelerators"
    ],
    "fetchDetails": false,
    "maxPages": 1,
    "maxListings": 0,
    "proxy": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("abotapi/f6s-directory-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 = {
    "mode": "search",
    "listType": "programs",
    "location": "",
    "keyword": "",
    "programType": "any",
    "sortBy": "open",
    "urls": ["https://www.f6s.com/accelerators"],
    "fetchDetails": False,
    "maxPages": 1,
    "maxListings": 0,
    "proxy": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("abotapi/f6s-directory-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 '{
  "mode": "search",
  "listType": "programs",
  "location": "",
  "keyword": "",
  "programType": "any",
  "sortBy": "open",
  "urls": [
    "https://www.f6s.com/accelerators"
  ],
  "fetchDetails": false,
  "maxPages": 1,
  "maxListings": 0,
  "proxy": {
    "useApifyProxy": true
  }
}' |
apify call abotapi/f6s-directory-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "F6S Scraper $1💰 Funding, Accelerators, Events & Jobs",
        "description": "From $1/1K. Extract structured data from F6S.com. Scrape funding programs, startup accelerators, events, and jobs from a single tool. Supports both filter-based searches and F6S URLs, returns 25+ fields per record, and works on all Apify plans using datacenter proxies.",
        "version": "1.0",
        "x-build-id": "lDwb8sZQrAf3E01qq"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/abotapi~f6s-directory-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-abotapi-f6s-directory-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/abotapi~f6s-directory-scraper/runs": {
            "post": {
                "operationId": "runs-sync-abotapi-f6s-directory-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/abotapi~f6s-directory-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-abotapi-f6s-directory-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"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "url"
                        ],
                        "type": "string",
                        "description": "How to start the scrape. 'search' builds list URLs from the filters below. 'url' takes the exact F6S list URLs you paste.",
                        "default": "search"
                    },
                    "listType": {
                        "title": "List type",
                        "enum": [
                            "programs",
                            "accelerators",
                            "events",
                            "jobs"
                        ],
                        "type": "string",
                        "description": "Which F6S directory to scrape in search mode.",
                        "default": "programs"
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "Optional location slug to narrow results, for example 'london', 'new-york', 'europe'. Leave empty for worldwide."
                    },
                    "keyword": {
                        "title": "Keyword",
                        "type": "string",
                        "description": "Optional free-text keyword, for example 'ai', 'fintech', 'climate'."
                    },
                    "programType": {
                        "title": "Program type",
                        "enum": [
                            "any",
                            "accelerator",
                            "incubator",
                            "grant",
                            "competition",
                            "fellowship"
                        ],
                        "type": "string",
                        "description": "Narrow programs to a subtype. Only applies when list type is Programs or Accelerators.",
                        "default": "any"
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "open",
                            "popular",
                            "closest"
                        ],
                        "type": "string",
                        "description": "Result ordering.",
                        "default": "open"
                    },
                    "minInvestment": {
                        "title": "Min investment (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep programs offering at least this much per team."
                    },
                    "maxInvestment": {
                        "title": "Max investment (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep programs offering at most this much per team."
                    },
                    "maxEquity": {
                        "title": "Max equity (%)",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Only keep programs that take at most this much equity."
                    },
                    "urls": {
                        "title": "F6S list URLs",
                        "type": "array",
                        "description": "Paste one or more F6S list URLs (for example https://www.f6s.com/programs/london). Multi-URL supported. Filter fields above are ignored. Pagination starts at the page in the URL and walks forward.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "fetchDetails": {
                        "title": "Fetch full details (richer records, extra cost)",
                        "type": "boolean",
                        "description": "Open each profile's About page to add full description, funding amount, website, social links and team. Adds one HTTP request per record.",
                        "default": false
                    },
                    "maxPages": {
                        "title": "Max pages per list",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "How many result pages to walk per list URL.",
                        "default": 1
                    },
                    "maxListings": {
                        "title": "Max records",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Stop after this many records (0 = unlimited).",
                        "default": 0
                    },
                    "proxy": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Network connection. The default works on all plans. Datacenter is enough; residential is an optional upgrade for heavier runs.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
