# Bluesky Starter Pack Scraper (`devilscrapes/bluesky-starter-pack`) Actor

Export full member lists from any Bluesky Starter Pack. No login needed. AT Protocol public API returns pack metadata and member profiles with follower counts.

- **URL**: https://apify.com/devilscrapes/bluesky-starter-pack.md
- **Developed by:** [DevilScrapes](https://apify.com/devilscrapes) (community)
- **Categories:** Social media
- **Stats:** 2 total users, 0 monthly users, 20.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

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

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

## Bluesky Starter Pack Scraper

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

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

Export the complete member graph of any Bluesky Starter Pack. We handle pagination, retries, and rate-limit pacing — you get pack metadata + full member profiles (follower counts, post counts, handles) in one clean self-contained dataset.

</div>

---

### 🎯 What this scrapes
Bluesky Starter Packs are curated community lists that drove 43% of all follows during Bluesky's 2024 growth surge (EurekAlert, 2024). This Actor scrapes the public AT Protocol AppView API (`https://public.api.bsky.app/xrpc/`) to export every member of any starter pack — one pack by URI, or every pack owned by a creator handle.

Target endpoints:
- `app.bsky.graph.getStarterPack` — single pack metadata and embedded list URI
- `app.bsky.graph.getActorStarterPacks` — all packs published by a creator, with cursor pagination
- `app.bsky.graph.getList` — member profiles with follower and post counts

No authentication required. The AT Protocol is an open protocol designed for interoperability.

### 🔥 Features
- **No login, no API key** — unauthenticated public AT Protocol API only.
- **Two modes** — scrape a single pack by URI/URL, or bulk-export every pack owned by a creator handle.
- **Denormalized output** — every row contains pack metadata and member profile in one flat record. No joins needed for analytics tools.
- **Bluesky web URLs accepted** — paste `https://bsky.app/starter-pack/handle/rkey` directly; the Actor normalizes it to AT URI form.
- **Follower counts included** — `member_followers_count`, `member_following_count`, `member_posts_count` on every row.
- **Member cap per pack** — configurable limit (1–5,000) so local test runs stay cheap.
- **PPE pricing** — you pay only for rows emitted, not for idle compute.

### 💡 Use cases
- **Academic research** — map community topology and influencer networks on Bluesky. Starter packs are the primary community formation mechanism on the platform.
- **B2B growth marketing** — identify niche audiences (e.g. "AI researchers on Bluesky") and build targeted outreach lists.
- **Social graph analysis** — compare follower counts and post activity across a curated peer group.
- **Competitive intelligence** — track which accounts are recommended by influential pack curators in your industry.
- **Journalism and OSINT** — document community formation around a topic or event.

### ⚙️ How to use it
**Single-pack mode** — paste the pack URI or web URL:

```json
{
  "starterPackUri": "at://did:plc:z72i7hdynmk6r22z3wouymf/app.bsky.graph.starterpack/ohX7HZkOlFj",
  "maxMembersPerPack": 500,
  "proxyConfiguration": {"useApifyProxy": false}
}
````

Or use a Bluesky web URL directly:

```json
{
  "starterPackUri": "https://bsky.app/starter-pack/alice.bsky.social/abc123rkey",
  "maxMembersPerPack": 500
}
```

**Creator mode** — scrape every pack owned by a Bluesky handle:

```json
{
  "creatorHandle": "pfrazee.com",
  "maxPacks": 10,
  "maxMembersPerPack": 200
}
```

Exactly one of `starterPackUri` or `creatorHandle` must be set — providing both or neither returns a validation error before any network call is made.

### 📥 Input

| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| `starterPackUri` | string | one-of | — | AT URI (`at://...`) or Bluesky web URL (`https://bsky.app/starter-pack/...`) of a single pack to scrape. Mutually exclusive with `creatorHandle`. |
| `creatorHandle` | string | one-of | — | Bluesky handle (e.g. `pfrazee.com`) or DID of a creator. The Actor exports every pack owned by that user. Mutually exclusive with `starterPackUri`. |
| `maxPacks` | integer | no | 10 | Max packs to process in creator mode (1–100). Ignored in single-pack mode. |
| `maxMembersPerPack` | integer | no | 500 | Max member rows emitted per pack (1–5,000). Pagination stops when limit is reached. |
| `proxyConfiguration` | object | no | disabled | Apify Proxy configuration. The AT Protocol API does not block datacenter IPs — leave disabled unless behind a restrictive ISP. |

### 📤 Output

One row per pack member. Pack metadata is denormalized into every row so a single CSV or JSON export is self-contained.

| Field | Type | Nullable | Description |
|---|---|---|---|
| `pack_uri` | string | no | AT URI of the starter pack |
| `pack_name` | string | no | Display title of the pack |
| `pack_description` | string | yes | Pack description, if set |
| `pack_creator_handle` | string | no | Bluesky handle of the pack creator |
| `member_did` | string | no | Decentralized identifier of the member |
| `member_handle` | string | no | Bluesky handle of the member |
| `member_display_name` | string | yes | Display name (may be blank) |
| `member_followers_count` | integer | yes | Follower count |
| `member_following_count` | integer | yes | Following count |
| `member_posts_count` | integer | yes | Post count |
| `member_indexed_at` | string | yes | ISO 8601 datetime the member was indexed |
| `scraped_at` | string | no | ISO 8601 UTC datetime this row was written |

Example record:

```json
{
  "pack_uri": "at://did:plc:abc123/app.bsky.graph.starterpack/xyz789",
  "pack_name": "AI Researchers on Bluesky",
  "pack_description": "Curated list of ML/AI researchers who migrated from Twitter.",
  "pack_creator_handle": "alice.bsky.social",
  "member_did": "did:plc:def456",
  "member_handle": "bob.bsky.social",
  "member_display_name": "Bob Smith",
  "member_followers_count": 1204,
  "member_following_count": 380,
  "member_posts_count": 841,
  "member_indexed_at": "2024-11-14T09:22:01.000Z",
  "scraped_at": "2026-05-16T12:00:00.000Z"
}
```

### 💰 Pricing

This Actor uses **Pay-Per-Event** (PPE) pricing — you pay only for what you use, not for idle compute time.

| Event | Price | When |
|---|---|---|
| Actor start | $0.05 | Once per run at boot |
| Member row emitted | $0.002 | Per row written to the dataset |

**Effective cost**: ~$2.05 per 1,000 members scraped ($0.05 start + $0.002 × 1,000 rows).

At 5,000 members (maximum per pack): ~$10.05.

### 🚧 Limitations

- **No keyword search** — the AT Protocol lexicon defines `app.bsky.graph.searchStarterPacks` but the public AppView returns HTTP 404 (`XRPCNotSupported`) for it. Discovery by keyword is not available on the public API tier. Use `creatorHandle` to enumerate packs by a known creator instead.
- **Public packs only** — private or invite-only starter packs are not visible to the unauthenticated AT Protocol API.
- **No historical data** — the AT Protocol does not expose member join/leave history. This Actor captures current membership only.
- **No post content** — member post threads are out of scope. Use a companion Bluesky feed Actor for post data.
- **No contact enrichment** — email addresses and off-platform contact data are not available via the AT Protocol.
- **Member count cap** — the `maxMembersPerPack` field (default 500, max 5,000) is a client-side guard. Pagination stops when the limit is reached.
- **Dataset retention** — Apify's default storage expires after 7 days on the FREE plan. Export your results or use a named dataset for longer retention.
- **Rate limiting** — the AT Protocol public AppView is designed for open access and does not publish rate limits. The Actor retries on 429/503 with exponential backoff (max 5 attempts, cap 30s).

### ❓ FAQ

**Do I need a Bluesky account to use this?**
No. The AT Protocol public AppView API (`https://public.api.bsky.app/xrpc/`) is fully unauthenticated. No login, no API key, no OAuth.

**Can I scrape multiple packs in one run?**
Yes — use creator mode (`creatorHandle`) to export every pack published by a Bluesky user, up to 100 packs per run.

**How do I find a pack's AT URI?**
Paste the Bluesky web URL (`https://bsky.app/starter-pack/<handle>/<rkey>`) directly into the `starterPackUri` field. The Actor normalizes it to AT URI form automatically.

**Why are some follower counts null?**
The AT Protocol API returns profile viewer stats (`followersCount`, `followsCount`, `postsCount`) inline in list member objects. If a profile is new or the API omits these fields, the Actor emits the row with those fields set to `null` rather than dropping the row.

**Is scraping Bluesky starter packs compliant with the Terms of Service?**
Yes. The AT Protocol is an open protocol explicitly designed for interoperability and data portability. Bluesky has publicly proposed a scraping standard for AI training datasets (Slashdot, 2025). The public AppView API is the official mechanism for unauthenticated access.

**What happens if I provide both starterPackUri and creatorHandle?**
The Actor raises a validation error before making any network call and exits with a non-zero status and a clear error message.

### 💬 Your feedback

Found a bug, a broken pack URI, or a missing field? Open an issue or contact DevilScrapes at https://apify.com/DevilScrapes. Feature requests and star ratings on the Apify Store are always welcome.

# Actor input Schema

## `starterPackUri` (type: `string`):

AT URI (<code>at://did:plc:.../app.bsky.graph.starterpack/...</code>) or Bluesky web URL (<code>https://bsky.app/starter-pack/handle/rkey</code>) of the pack to scrape. Use this for single-pack mode. Mutually exclusive with <strong>Creator handle</strong>.

## `creatorHandle` (type: `string`):

Bluesky handle (e.g. <code>pfrazee.com</code>) or DID of a starter-pack creator. The Actor lists every pack owned by that user via <code>app.bsky.graph.getActorStarterPacks</code> and scrapes each. Mutually exclusive with <strong>Starter pack URI</strong>.

## `maxPacks` (type: `integer`):

Maximum number of starter packs to process when using creator mode. Ignored in single-pack mode. Default 10.

## `maxMembersPerPack` (type: `integer`):

Maximum number of member rows emitted per starter pack. Acts as a client-side cap; pagination stops when this limit is reached. Default 500.

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

Optional Apify Proxy configuration. The AT Protocol public API does not block datacenter IPs — leave disabled unless you are behind a restrictive ISP.

## Actor input object example

```json
{
  "starterPackUri": "at://did:plc:ragtjsm2j2vknwkz3zp4oxrd/app.bsky.graph.starterpack/3l2stmy4ote2b",
  "creatorHandle": "pfrazee.com",
  "maxPacks": 10,
  "maxMembersPerPack": 500,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

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

All dataset items as JSON.

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

Same data exported to CSV.

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

Open the run dataset in the Console.

# API

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

## JavaScript example

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

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

// Prepare Actor input
const input = {
    "starterPackUri": "at://did:plc:ragtjsm2j2vknwkz3zp4oxrd/app.bsky.graph.starterpack/3l2stmy4ote2b",
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("devilscrapes/bluesky-starter-pack").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 = {
    "starterPackUri": "at://did:plc:ragtjsm2j2vknwkz3zp4oxrd/app.bsky.graph.starterpack/3l2stmy4ote2b",
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("devilscrapes/bluesky-starter-pack").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 '{
  "starterPackUri": "at://did:plc:ragtjsm2j2vknwkz3zp4oxrd/app.bsky.graph.starterpack/3l2stmy4ote2b",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call devilscrapes/bluesky-starter-pack --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Bluesky Starter Pack Scraper",
        "description": "Export full member lists from any Bluesky Starter Pack. No login needed. AT Protocol public API returns pack metadata and member profiles with follower counts.",
        "version": "0.2",
        "x-build-id": "mW7tuoG0B6R3Jnasc"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/devilscrapes~bluesky-starter-pack/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-devilscrapes-bluesky-starter-pack",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/devilscrapes~bluesky-starter-pack/runs": {
            "post": {
                "operationId": "runs-sync-devilscrapes-bluesky-starter-pack",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/devilscrapes~bluesky-starter-pack/run-sync": {
            "post": {
                "operationId": "run-sync-devilscrapes-bluesky-starter-pack",
                "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": {
                    "starterPackUri": {
                        "title": "Starter pack URI or URL",
                        "type": "string",
                        "description": "AT URI (<code>at://did:plc:.../app.bsky.graph.starterpack/...</code>) or Bluesky web URL (<code>https://bsky.app/starter-pack/handle/rkey</code>) of the pack to scrape. Use this for single-pack mode. Mutually exclusive with <strong>Creator handle</strong>."
                    },
                    "creatorHandle": {
                        "title": "Creator handle (or DID)",
                        "type": "string",
                        "description": "Bluesky handle (e.g. <code>pfrazee.com</code>) or DID of a starter-pack creator. The Actor lists every pack owned by that user via <code>app.bsky.graph.getActorStarterPacks</code> and scrapes each. Mutually exclusive with <strong>Starter pack URI</strong>."
                    },
                    "maxPacks": {
                        "title": "Max packs (creator mode)",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Maximum number of starter packs to process when using creator mode. Ignored in single-pack mode. Default 10.",
                        "default": 10
                    },
                    "maxMembersPerPack": {
                        "title": "Max members per pack",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum number of member rows emitted per starter pack. Acts as a client-side cap; pagination stops when this limit is reached. Default 500.",
                        "default": 500
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional Apify Proxy configuration. The AT Protocol public API does not block datacenter IPs — leave disabled unless you are behind a restrictive ISP.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
