# Bluesky Scraper — Posts, Profiles, Followers & Search (`ethanteague/bluesky-scraper`) Actor

Scrape Bluesky posts, profiles, followers/following, full threads, and keyword search into clean flat JSON/CSV. Profiles and feeds need no login; keyword search uses your free app password.

- **URL**: https://apify.com/ethanteague/bluesky-scraper.md
- **Developed by:** [Ethan Teague](https://apify.com/ethanteague) (community)
- **Categories:** Social media, AI
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.50 / 1,000 post scrapeds

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Bluesky Scraper — Posts, Profiles, Followers & Search

Scrape **Bluesky** posts, profiles, followers, full reply threads, and keyword search results into clean, flat JSON — ready for CSV/Excel export, dashboards, lead lists, research datasets, or AI agents.

Built on Bluesky's official AT Protocol API. **Profiles, user feeds, followers, and threads need no login at all.** Keyword post search uses your free Bluesky app password (Bluesky blocks anonymous search platform-wide — any tool that claims otherwise is proxying your requests through someone else's account).

### What you can scrape

| Mode | What you get | Login needed? |
|---|---|---|
| **User posts** | Latest posts from any user's feed (reposts optional, reply filtering) | No |
| **Profiles** | Bio, display name, follower/following/post counts, avatar, dates | No |
| **Followers / Following** | Full follower and following lists as profile records | No |
| **Threads** | A post plus its entire reply tree from any post URL | No |
| **Keyword search** | Posts matching any query, sorted by latest or top, with date/language filters | Free app password |

### Why this scraper

- **Flat output, no nesting headaches** — every item exports to CSV in one click. Author fields, like counts, image URLs, links, and quoted posts are all top-level columns.
- **Honest engineering** — official AT Protocol endpoints, polite rate limiting with automatic backoff and retries. No fragile HTML parsing that breaks every redesign.
- **Transparent pay-per-event pricing** — you pay per post/profile scraped, nothing else. 1,000 posts ≈ $0.50.
- **Built for AI agents** — clean input schema, predictable output, works out of the box through the Apify API and MCP.
- **Failures don't eat your money** — you're only charged for items actually delivered to the dataset.

### Quick start

1. Enter one or more **user handles** (`bsky.app`, `@someone.bsky.social`, or a profile URL) — or paste **post URLs** to scrape threads.
2. Choose how many posts you want and whether to include profiles, followers, or reposts.
3. Click **Start** and export the dataset as JSON, CSV, Excel, or feed it to the API.

#### Unlocking keyword search (2 minutes, free)

Bluesky requires authentication for keyword search. In the Bluesky app or website: **Settings → Privacy and security → App passwords → Add app password.** Copy the generated password into this actor's *Bluesky app password* field and put your handle in *Bluesky identifier*. Never use your main account password — app passwords can be revoked anytime and can't manage your account. Your credentials are encrypted by Apify, used only to call Bluesky's search endpoint, and never logged.

### Example input

```json
{
  "userHandles": ["bsky.app", "https://bsky.app/profile/atproto.com"],
  "maxPostsPerUser": 200,
  "includeProfiles": true,
  "includeFollowers": true,
  "maxFollowersPerUser": 500,
  "postThreadUrls": ["https://bsky.app/profile/someone.bsky.social/post/3mqc36slinc2m"],
  "searchQueries": ["ai agents"],
  "maxPostsPerQuery": 300,
  "searchSort": "latest"
}
````

### Example output

A post item (trimmed):

```json
{
  "type": "post",
  "uri": "at://did:plc:ewvi7nxzyoun6zhxrhs64oiz/app.bsky.feed.post/3mp2n77vwzc2d",
  "url": "https://bsky.app/profile/atproto.com/post/3mp2n77vwzc2d",
  "authorHandle": "atproto.com",
  "authorDisplayName": "AT Protocol Developers",
  "authorDid": "did:plc:ewvi7nxzyoun6zhxrhs64oiz",
  "text": "We're very pumped to announce that the reference PDS now has an account management page!",
  "createdAt": "2026-06-24T19:22:03.650Z",
  "replyCount": 4,
  "repostCount": 87,
  "likeCount": 312,
  "quoteCount": 9,
  "isReply": false,
  "images": [{ "url": "https://cdn.bsky.app/img/feed_fullsize/...", "alt": "Screenshot" }],
  "externalLink": { "uri": "https://atproto.com/blog/...", "title": "PDS account management" },
  "source": "author_feed",
  "sourceHandle": "atproto.com"
}
```

A profile item:

```json
{
  "type": "profile",
  "did": "did:plc:z72i7hdynmk6r22z27h6tvur",
  "handle": "bsky.app",
  "displayName": "Bluesky",
  "description": "official Bluesky account",
  "followersCount": 1274531,
  "followsCount": 12,
  "postsCount": 918,
  "createdAt": "2023-04-12T04:53:57.057Z",
  "profileUrl": "https://bsky.app/profile/bsky.app",
  "source": "input"
}
```

Every post also carries `indexedAt`, `langs`, `labels`, `parentUri` (for replies), `videoThumbnail`, and quoted-post fields when present. Reposts (when enabled) are marked `isRepost: true` with the original author.

### Pricing

Pay only for what lands in your dataset:

| Event | Price |
|---|---|
| Actor start | $0.001 per run |
| Post scraped | $0.0005 (= **$0.50 per 1,000 posts**) |
| Profile scraped (incl. follower/following records) | $0.001 (= $1.00 per 1,000 profiles) |

Examples: a competitor's last 500 posts + profile ≈ **$0.25**. Followers of five accounts, 1,000 each ≈ **$5.00**. Set a *Maximum total charge* on any run to hard-cap spend — the actor stops gracefully at the limit.

### Use it via API

```bash
curl -X POST "https://api.apify.com/v2/acts/USERNAME~bluesky-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"userHandles": ["bsky.app"], "maxPostsPerUser": 50}'
```

Works with the [Apify JavaScript and Python clients](https://docs.apify.com/api/client/js/), scheduled runs, webhooks, and integrations (Google Sheets, Make, Zapier, LangChain).

#### AI agents & MCP

This actor is agent-friendly: strict input schema, flat deterministic output, and it's callable as a tool through the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp) — point your agent at it and ask for "the last 100 posts from @handle as a table."

### Rate limits, freshness & fair use

Data comes live from Bluesky's API at request time — nothing cached, nothing stale. The actor paginates politely (automatic backoff on rate limits) and typically sustains thousands of items per minute. Only public data is collected: public posts, public profiles, public graphs. Keyword search runs under your own account credentials against the official endpoint.

### FAQ

**Is scraping Bluesky allowed?** This actor reads public data through Bluesky's official, documented AT Protocol API — the same endpoints any Bluesky client uses — at polite request rates. Keyword search additionally runs under your own credentials. You're responsible for complying with applicable laws and Bluesky's terms for your use case.

**Why do some profiles show `handle.invalid`?** That's Bluesky's marker for accounts with broken handle verification; the actor automatically falls back to DID-based profile URLs so the records stay usable.

**Can I use search operators?** Yes — operators that work in the Bluesky app's search box (like `from:handle`) work in `searchQueries` too.

**My account is on a self-hosted PDS.** Set *PDS service URL* in the Advanced section; everything else works the same.

**Something broke or you need another mode?** Open an issue on this actor's **Issues** tab — I typically respond within a day. Planned next: lists, feed generators, starter packs, and post likers/quoters.

# Actor input Schema

## `userHandles` (type: `array`):

Bluesky users to scrape — handles (<code>bsky.app</code>, <code>@someone.bsky.social</code>), profile URLs (<code>https://bsky.app/profile/...</code>), or DIDs. For each user the actor scrapes the profile and/or their posts, depending on the options below. <b>No login needed.</b>

## `maxPostsPerUser` (type: `integer`):

How many of each user's most recent posts to scrape. Set to 0 to skip posts and get profiles only.

## `includeProfiles` (type: `boolean`):

Push a profile item (bio, follower counts, etc.) for every user handle.

## `includeReposts` (type: `boolean`):

When on, reposts appearing in a user's feed are included (the item's author is the original poster).

## `authorPostsFilter` (type: `string`):

Filter applied to each user's feed.

## `includeFollowers` (type: `boolean`):

Collect each user's followers (as profile items with source = followers\_of).

## `includeFollows` (type: `boolean`):

Collect who each user follows (as profile items with source = follows\_of).

## `maxFollowersPerUser` (type: `integer`):

Cap for each list (applies separately to followers and following).

## `postThreadUrls` (type: `array`):

Post URLs (<code>https://bsky.app/profile/handle/post/xyz</code>) or AT-URIs (<code>at://did/app.bsky.feed.post/xyz</code>). The post and its reply tree are scraped.

## `threadDepth` (type: `integer`):

How many levels of nested replies to fetch.

## `searchQueries` (type: `array`):

Keyword searches, e.g. <code>ai agents</code>. Advanced operators from the Bluesky app work too (e.g. <code>from:handle</code>). Leave empty to skip search.

## `maxPostsPerQuery` (type: `integer`):

How many posts to collect per search query.

## `searchSort` (type: `string`):

Sort order of search results.

## `searchSince` (type: `string`):

Only posts after this time, e.g. <code>2026-01-01T00:00:00Z</code>. Optional.

## `searchUntil` (type: `string`):

Only posts before this time. Optional.

## `searchLanguage` (type: `string`):

Two-letter language code filter, e.g. <code>en</code>. Optional.

## `blueskyIdentifier` (type: `string`):

Your Bluesky handle or the email you log in with. Only used to unlock keyword search; never stored.

## `blueskyAppPassword` (type: `string`):

An app password from Settings → Privacy and security → App passwords. NOT your main password. Encrypted by Apify; never logged.

## `pdsService` (type: `string`):

Only change this if your Bluesky account lives on a self-hosted PDS.

## Actor input object example

```json
{
  "userHandles": [
    "bsky.app"
  ],
  "maxPostsPerUser": 100,
  "includeProfiles": true,
  "includeReposts": false,
  "authorPostsFilter": "posts_no_replies",
  "includeFollowers": false,
  "includeFollows": false,
  "maxFollowersPerUser": 200,
  "threadDepth": 6,
  "maxPostsPerQuery": 100,
  "searchSort": "latest",
  "pdsService": "https://bsky.social"
}
```

# 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 = {
    "userHandles": [
        "bsky.app"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("ethanteague/bluesky-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 = { "userHandles": ["bsky.app"] }

# Run the Actor and wait for it to finish
run = client.actor("ethanteague/bluesky-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 '{
  "userHandles": [
    "bsky.app"
  ]
}' |
apify call ethanteague/bluesky-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Bluesky Scraper — Posts, Profiles, Followers & Search",
        "description": "Scrape Bluesky posts, profiles, followers/following, full threads, and keyword search into clean flat JSON/CSV. Profiles and feeds need no login; keyword search uses your free app password.",
        "version": "1.0",
        "x-build-id": "BwQkFHiQtGhX4wYeg"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/ethanteague~bluesky-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-ethanteague-bluesky-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/ethanteague~bluesky-scraper/runs": {
            "post": {
                "operationId": "runs-sync-ethanteague-bluesky-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/ethanteague~bluesky-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-ethanteague-bluesky-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "userHandles": {
                        "title": "User handles or profile URLs",
                        "type": "array",
                        "description": "Bluesky users to scrape — handles (<code>bsky.app</code>, <code>@someone.bsky.social</code>), profile URLs (<code>https://bsky.app/profile/...</code>), or DIDs. For each user the actor scrapes the profile and/or their posts, depending on the options below. <b>No login needed.</b>",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxPostsPerUser": {
                        "title": "Max posts per user",
                        "minimum": 0,
                        "maximum": 50000,
                        "type": "integer",
                        "description": "How many of each user's most recent posts to scrape. Set to 0 to skip posts and get profiles only.",
                        "default": 100
                    },
                    "includeProfiles": {
                        "title": "Scrape profile details",
                        "type": "boolean",
                        "description": "Push a profile item (bio, follower counts, etc.) for every user handle.",
                        "default": true
                    },
                    "includeReposts": {
                        "title": "Include reposts in user feeds",
                        "type": "boolean",
                        "description": "When on, reposts appearing in a user's feed are included (the item's author is the original poster).",
                        "default": false
                    },
                    "authorPostsFilter": {
                        "title": "Which posts from user feeds",
                        "enum": [
                            "posts_no_replies",
                            "posts_with_replies",
                            "posts_and_author_threads",
                            "posts_with_media"
                        ],
                        "type": "string",
                        "description": "Filter applied to each user's feed.",
                        "default": "posts_no_replies"
                    },
                    "includeFollowers": {
                        "title": "Scrape followers",
                        "type": "boolean",
                        "description": "Collect each user's followers (as profile items with source = followers_of).",
                        "default": false
                    },
                    "includeFollows": {
                        "title": "Scrape following",
                        "type": "boolean",
                        "description": "Collect who each user follows (as profile items with source = follows_of).",
                        "default": false
                    },
                    "maxFollowersPerUser": {
                        "title": "Max followers/following per user",
                        "minimum": 1,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Cap for each list (applies separately to followers and following).",
                        "default": 200
                    },
                    "postThreadUrls": {
                        "title": "Post/thread URLs",
                        "type": "array",
                        "description": "Post URLs (<code>https://bsky.app/profile/handle/post/xyz</code>) or AT-URIs (<code>at://did/app.bsky.feed.post/xyz</code>). The post and its reply tree are scraped.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "threadDepth": {
                        "title": "Thread reply depth",
                        "minimum": 0,
                        "maximum": 50,
                        "type": "integer",
                        "description": "How many levels of nested replies to fetch.",
                        "default": 6
                    },
                    "searchQueries": {
                        "title": "Search queries",
                        "type": "array",
                        "description": "Keyword searches, e.g. <code>ai agents</code>. Advanced operators from the Bluesky app work too (e.g. <code>from:handle</code>). Leave empty to skip search.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxPostsPerQuery": {
                        "title": "Max posts per query",
                        "minimum": 1,
                        "maximum": 50000,
                        "type": "integer",
                        "description": "How many posts to collect per search query.",
                        "default": 100
                    },
                    "searchSort": {
                        "title": "Search sort",
                        "enum": [
                            "latest",
                            "top"
                        ],
                        "type": "string",
                        "description": "Sort order of search results.",
                        "default": "latest"
                    },
                    "searchSince": {
                        "title": "Search since (ISO date)",
                        "type": "string",
                        "description": "Only posts after this time, e.g. <code>2026-01-01T00:00:00Z</code>. Optional."
                    },
                    "searchUntil": {
                        "title": "Search until (ISO date)",
                        "type": "string",
                        "description": "Only posts before this time. Optional."
                    },
                    "searchLanguage": {
                        "title": "Search language",
                        "type": "string",
                        "description": "Two-letter language code filter, e.g. <code>en</code>. Optional."
                    },
                    "blueskyIdentifier": {
                        "title": "Bluesky identifier (for search only)",
                        "type": "string",
                        "description": "Your Bluesky handle or the email you log in with. Only used to unlock keyword search; never stored."
                    },
                    "blueskyAppPassword": {
                        "title": "Bluesky app password (for search only)",
                        "type": "string",
                        "description": "An app password from Settings → Privacy and security → App passwords. NOT your main password. Encrypted by Apify; never logged."
                    },
                    "pdsService": {
                        "title": "PDS service URL",
                        "type": "string",
                        "description": "Only change this if your Bluesky account lives on a self-hosted PDS.",
                        "default": "https://bsky.social"
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
