# Bluesky Scraper (`crawlerbros/bluesky-scraper`) Actor

Scrape Bluesky (AT Protocol) using search posts by keyword or hashtag, fetch user timelines, look up profiles, search for accounts, and pull custom feeds. Pure HTTP, no login required, no proxy needed.

- **URL**: https://apify.com/crawlerbros/bluesky-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Social media, Developer tools, Other
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, 22 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
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

## Bluesky Scraper

Scrape **Bluesky** (the AT Protocol social network) — full-text search by keyword or hashtag, fetch user timelines, look up profiles, search for accounts, and pull custom feeds. Pure HTTP, no login, no cookies, no proxy required.

Bluesky's public XRPC endpoints serve every read operation without authentication, so the actor runs straight from datacenter IPs.

### What you get

#### Post records (`recordType=post`)

| Field | Description |
| --- | --- |
| `uri` | Canonical AT URI (`at://did:plc:.../app.bsky.feed.post/...`) |
| `cid` | Content ID |
| `url` | Public `bsky.app` URL (derived from `uri` + author handle) |
| `text` | Post text |
| `createdAt` | ISO 8601 timestamp |
| `indexedAt` | When Bluesky indexed the post |
| `language` | ISO 639-1 language code |
| `replyCount` | Reply count |
| `repostCount` | Repost count |
| `likeCount` | Like count |
| `quoteCount` | Quote-post count |
| `bookmarkCount` | Bookmark count |
| `inReplyToUri` | AT URI of parent post (when reply) |
| `inReplyToCid` | CID of parent post (when reply) |
| `isRepost` | `true` if surfaced via repost reason |
| `repostedBy` | Handle that reposted (when `isRepost=true`) |
| `mentions` | Array of mentioned DIDs (extracted from facets) |
| `tags` | Array of hashtags used (lowercase, extracted from facets) |
| `urls` | Array of external URLs in the post (extracted from facets) |
| `mediaAttachments` | Array of `{type, url, previewUrl, description}` for images/videos/external |
| `quotedPost` | Embedded quoted post `{uri, cid, text, authorHandle, authorDid}` |
| `author` | Author summary `{did, handle, displayName, avatar}` |
| `authorHandle` | Author handle (top-level convenience field) |
| `scrapedAt` | ISO 8601 UTC timestamp of extraction |

#### Account records (`recordType=account`)

| Field | Description |
| --- | --- |
| `did` | DID (decentralised identifier) |
| `handle` | Bluesky handle (e.g. `bsky.app`) |
| `displayName` | Display name |
| `description` | Bio |
| `avatar` | Avatar URL |
| `banner` | Banner URL |
| `followersCount`, `followsCount`, `postsCount` | Stats |
| `createdAt` | Account creation timestamp |
| `indexedAt` | When Bluesky last reindexed the profile |
| `url` | Public profile URL |

Empty fields are dropped from every record at every depth — the dataset never contains nulls.

### Input

| Parameter | Type | Default | Description |
| --- | --- | --- | --- |
| `mode` | Enum | `search` | `search` / `profile` / `actorSearch` / `feed` / `postThread` / `urlFetch` / `getPosts` / `follows` / `followers` / `getLikes` / `getActorLikes` / `getList` / `getStarterPack` / `feedGeneratorsDiscovery` |
| `searchQuery` | String | `bluesky` | Free-text query (used by `search` and `actorSearch`); also acts as a query keyword for `feedGeneratorsDiscovery` |
| `searchSort` | Enum | `top` | `top` (engagement) or `latest` (recency) — applies to `mode=search` |
| `actor` | String | `bsky.app` | Handle (`bsky.app`) or DID. Used by `profile` / `follows` / `followers` / `getActorLikes` |
| `postUri` | String | — | Full AT URI of a post — used by `mode=postThread` and `mode=getLikes` |
| `postUris` | Array | — | Up to 25 AT URIs to batch-hydrate — used by `mode=getPosts` |
| `postUrls` | Array | — | Public bsky.app post URLs to expand — used by `mode=urlFetch` |
| `listUri` | String | — | AT URI of a Bluesky list — used by `mode=getList` |
| `starterPackUri` | String | — | AT URI of a starter pack — used by `mode=getStarterPack` |
| `feedPreset` | Enum | — | Built-in feed preset — `whats-hot`, `discover`, `mutuals`, `bsky-team`, `hot-classic`, `popular-with-friends`, `for-you`, `news`, `trending-videos`, `quiet-posters`. Overrides `feedUri` when set. |
| `feedUri` | String | — | Custom AT feed URI for `mode=feed` (used when no preset is selected) |
| `language` | Enum | — | ISO 639-1 dropdown (top 30 codes) — drops posts not in this language |
| `excludeReplies` | Boolean | `false` | Drop reply posts |
| `excludeReposts` | Boolean | `false` | Drop reposts |
| `mediaOnly` | Boolean | `false` | Only emit posts with at least one media attachment |
| `minLikes` | Integer | — | Drop posts with fewer likes |
| `minReposts` | Integer | — | Drop posts with fewer reposts |
| `since` | String | — | `YYYY-MM-DD` — earliest post date (search mode) |
| `until` | String | — | `YYYY-MM-DD` — latest post date (search mode) |
| `fromUser` | String | — | Restrict search to a specific author handle / DID |
| `maxItems` | Integer | `40` | Hard cap on emitted records (1-5000) |

#### Example input — keyword search

```json
{
  "mode": "search",
  "searchQuery": "AI",
  "language": "en",
  "minLikes": 50,
  "maxItems": 100
}
````

#### Example input — hashtag search

```json
{
  "mode": "search",
  "searchQuery": "#python",
  "since": "2026-01-01",
  "maxItems": 200
}
```

#### Example input — user profile

```json
{
  "mode": "profile",
  "actor": "bsky.app",
  "maxItems": 50,
  "excludeReplies": true
}
```

#### Example input — account search

```json
{
  "mode": "actorSearch",
  "searchQuery": "rust",
  "maxItems": 25
}
```

#### Example input — custom feed

```json
{
  "mode": "feed",
  "feedPreset": "whats-hot",
  "maxItems": 100
}
```

#### Example input — post thread (post + replies)

```json
{
  "mode": "postThread",
  "postUri": "at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.post/3kxxxx",
  "maxItems": 200
}
```

#### Example input — expand post URLs

```json
{
  "mode": "urlFetch",
  "postUrls": [
    "https://bsky.app/profile/bsky.app/post/3kxxxx",
    "https://bsky.app/profile/jay.bsky.team/post/3kyyyy"
  ]
}
```

#### Example input — followers / follows

```json
{
  "mode": "followers",
  "actor": "bsky.app",
  "maxItems": 200
}
```

#### Example input — likes on a post

```json
{
  "mode": "getLikes",
  "postUri": "at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.post/3kxxxx",
  "maxItems": 100
}
```

#### Example input — discover popular feed generators

```json
{
  "mode": "feedGeneratorsDiscovery",
  "searchQuery": "news",
  "maxItems": 50
}
```

#### Example input — author + keyword

```json
{
  "mode": "search",
  "searchQuery": "release",
  "fromUser": "bsky.app",
  "maxItems": 50
}
```

### Example output

```json
{
  "recordType": "post",
  "uri": "at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.post/3ml54ry2iwc2x",
  "cid": "bafyreidwzz...",
  "url": "https://bsky.app/profile/bsky.app/post/3ml54ry2iwc2x",
  "text": "Keep it private! We're adding more ways to connect…",
  "createdAt": "2026-04-23T17:06:32.796Z",
  "language": "en",
  "replyCount": 123,
  "repostCount": 255,
  "likeCount": 1509,
  "quoteCount": 47,
  "tags": ["bluesky"],
  "mentions": [],
  "urls": [],
  "mediaAttachments": [
    { "type": "image", "url": "https://cdn.bsky.app/img/feed_fullsize/.../photo.jpg", "previewUrl": "https://cdn.bsky.app/img/feed_thumbnail/.../photo.jpg", "description": "Demonstration of …" }
  ],
  "author": {
    "did": "did:plc:z72i7hdynmk6r22z27h6tvur",
    "handle": "bsky.app",
    "displayName": "Bluesky",
    "avatar": "https://cdn.bsky.app/img/avatar/plain/.../jpeg"
  },
  "authorHandle": "bsky.app",
  "scrapedAt": "2026-05-06T05:24:18Z"
}
```

### Use cases

- **Social listening / brand monitoring** — Track mentions of your brand or product on Bluesky in real time.
- **Trend research** — Pull `mode=feed` "What's Hot" for a daily snapshot of viral content.
- **Influencer discovery** — Combine `actorSearch` + `minLikes` filters to surface high-impact accounts in any niche.
- **Academic research** — Snapshot public conversations on the AT Protocol, with full media + facet provenance.
- **Cross-platform social monitoring** — Pair with our Mastodon / Twitter / Reddit scrapers for full coverage of post-X social media.
- **Content discovery** — Surface high-engagement posts on a specific hashtag for content curation.
- **Competitor tracking** — Use `fromUser` + keyword to monitor what specific competitors post about specific topics.

### FAQ

**Do I need a Bluesky account or login?**
No. Every endpoint this actor uses (`searchPosts`, `getProfile`, `getAuthorFeed`, `searchActors`, `getFeed`) is part of Bluesky's public AppView and serves anonymous traffic.

**How does Bluesky's search work?**
Bluesky supports its standard search operators in the `searchQuery`:

- `from:handle` — posts by a specific user
- `since:YYYY-MM-DD` / `until:YYYY-MM-DD` — date range
- `lang:en` — language filter
- `#hashtag` — exact hashtag match

The actor also exposes `since`, `until`, `fromUser`, and `language` as dedicated input fields that get folded into the query.

**What's the difference between `mode=search` and `mode=actorSearch`?**

- `mode=search` runs full-text search across **posts**.
- `mode=actorSearch` runs typeahead-style search across **accounts** (handles + display names + bios).

**What's a "feed" and which shortnames are supported?**
A feed is a curated post stream produced by a feed-generator service. Built-in shortnames: `whats-hot` / `discover` (Bluesky's official trending feed), `bsky-team`, `mutuals`. Pass any AT URI directly via `feedUri` to scrape custom feeds.

**How are reposts handled?**
A repost surfaced via `getAuthorFeed` is emitted as one record with `isRepost=true` and `repostedBy=<handle>`, with the underlying post's text/media/counts preserved. Use `excludeReposts=true` to drop these.

**How are quoted posts handled?**
A quote-post is emitted as one record with the quoter's text in `text` and the quoted post's metadata in `quotedPost: {uri, cid, text, authorHandle, authorDid}`.

**How current is the data?**
Live — every run hits Bluesky's AppView at request time. Schedule the actor for hourly / daily refreshes.

**Do I need a proxy?**
No. The Bluesky AppView is happy to serve datacenter IPs. The actor sets a polite User-Agent and stays well under any rate limit.

### Limitations

- **`mode=search` is capped at ~100 posts per query.** Bluesky's AppView blocks unauthenticated cursor pagination on `searchPosts` (HTTP 403 from page 2 onward). Each query returns one page of up to 100 posts. To get more results, run multiple queries with different keywords or use `fromUser` + date filters to narrow.
- `mode=profile`, `mode=actorSearch`, and `mode=feed` paginate normally and can return thousands of records.
- Bluesky search is recency-weighted and does not index every post — very old or low-engagement posts may not surface in `searchPosts`.
- Custom feeds depend on third-party feed-generator services; if a generator is offline, the feed returns empty.
- The actor only reads public data — it cannot access private follower lists or DMs.
- Bluesky's AT Protocol is still evolving; field names and embed types may shift between major releases.

# Actor input Schema

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

What to fetch.

## `searchQuery` (type: `string`):

Keyword, hashtag (with `#`), or full-text query. Bluesky supports its standard search operators: `from:user`, `since:YYYY-MM-DD`, `lang:en`, etc.

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

Sort order for `mode=search`. `top` ranks by engagement; `latest` ranks by recency.

## `actor` (type: `string`):

Bluesky handle (e.g. `bsky.app`, `jay.bsky.team`) or full DID (`did:plc:...`). Used by profile / follows / followers / actorLikes modes.

## `postUri` (type: `string`):

Full AT URI of the post (`at://did:plc:.../app.bsky.feed.post/<rkey>`).

## `postUris` (type: `array`):

Up to 25 AT URIs to batch-hydrate. Each must be `at://did:plc:.../app.bsky.feed.post/<rkey>`.

## `postUrls` (type: `array`):

Public bsky.app post URLs to expand, e.g. `https://bsky.app/profile/bsky.app/post/3kxxxx`.

## `listUri` (type: `string`):

AT URI of a Bluesky list (`at://did:plc:.../app.bsky.graph.list/<rkey>`).

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

AT URI of a Bluesky starter pack (`at://did:plc:.../app.bsky.graph.starterpack/<rkey>`).

## `feedPreset` (type: `string`):

Built-in Bluesky feed preset. Overrides `feedUri` if both are set.

## `feedUri` (type: `string`):

Full AT URI of a feed generator (`at://did:plc:.../app.bsky.feed.generator/<rkey>`). Use this for community feeds not in the preset list.

## `language` (type: `string`):

ISO 639-1 language code. Drops posts not in this language. Empty = no filter.

## `excludeReplies` (type: `boolean`):

Drop posts that are replies to another post.

## `excludeReposts` (type: `boolean`):

Drop posts that are reposts of someone else's post.

## `mediaOnly` (type: `boolean`):

Only emit posts that have at least one image / video / external embed.

## `minLikes` (type: `integer`):

Drop posts with fewer than this many likes.

## `minReposts` (type: `integer`):

Drop posts with fewer than this many reposts.

## `since` (type: `string`):

Earliest post date as `YYYY-MM-DD`. Bluesky search recency-weights its index; use the explicit `since:` filter for strict date bounds.

## `until` (type: `string`):

Latest post date as `YYYY-MM-DD`.

## `fromUser` (type: `string`):

Restrict search to posts authored by this handle (or DID).

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

Hard cap on emitted records.

## Actor input object example

```json
{
  "mode": "search",
  "searchQuery": "bluesky",
  "searchSort": "top",
  "actor": "bsky.app",
  "excludeReplies": false,
  "excludeReposts": false,
  "mediaOnly": false,
  "maxItems": 40
}
```

# Actor output Schema

## `records` (type: `string`):

Dataset containing all scraped posts and accounts.

# 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",
    "searchQuery": "bluesky",
    "actor": "bsky.app",
    "excludeReplies": false,
    "excludeReposts": false,
    "mediaOnly": false,
    "maxItems": 40
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/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 = {
    "mode": "search",
    "searchQuery": "bluesky",
    "actor": "bsky.app",
    "excludeReplies": False,
    "excludeReposts": False,
    "mediaOnly": False,
    "maxItems": 40,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/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 '{
  "mode": "search",
  "searchQuery": "bluesky",
  "actor": "bsky.app",
  "excludeReplies": false,
  "excludeReposts": false,
  "mediaOnly": false,
  "maxItems": 40
}' |
apify call crawlerbros/bluesky-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Bluesky Scraper",
        "description": "Scrape Bluesky (AT Protocol) using search posts by keyword or hashtag, fetch user timelines, look up profiles, search for accounts, and pull custom feeds. Pure HTTP, no login required, no proxy needed.",
        "version": "1.0",
        "x-build-id": "wfCDbbroHbaeZWf5n"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~bluesky-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-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/crawlerbros~bluesky-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-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/crawlerbros~bluesky-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-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",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "profile",
                            "actorSearch",
                            "feed",
                            "postThread",
                            "urlFetch",
                            "getPosts",
                            "follows",
                            "followers",
                            "getLikes",
                            "getActorLikes",
                            "getList",
                            "getStarterPack",
                            "feedGeneratorsDiscovery"
                        ],
                        "type": "string",
                        "description": "What to fetch.",
                        "default": "search"
                    },
                    "searchQuery": {
                        "title": "Search query (mode=search / actorSearch)",
                        "type": "string",
                        "description": "Keyword, hashtag (with `#`), or full-text query. Bluesky supports its standard search operators: `from:user`, `since:YYYY-MM-DD`, `lang:en`, etc.",
                        "default": "bluesky"
                    },
                    "searchSort": {
                        "title": "Search sort (mode=search)",
                        "enum": [
                            "top",
                            "latest"
                        ],
                        "type": "string",
                        "description": "Sort order for `mode=search`. `top` ranks by engagement; `latest` ranks by recency.",
                        "default": "top"
                    },
                    "actor": {
                        "title": "Handle or DID (mode=profile / follows / followers / getActorLikes)",
                        "type": "string",
                        "description": "Bluesky handle (e.g. `bsky.app`, `jay.bsky.team`) or full DID (`did:plc:...`). Used by profile / follows / followers / actorLikes modes."
                    },
                    "postUri": {
                        "title": "Post AT URI (mode=postThread / getLikes)",
                        "type": "string",
                        "description": "Full AT URI of the post (`at://did:plc:.../app.bsky.feed.post/<rkey>`)."
                    },
                    "postUris": {
                        "title": "Post AT URIs (mode=getPosts)",
                        "type": "array",
                        "description": "Up to 25 AT URIs to batch-hydrate. Each must be `at://did:plc:.../app.bsky.feed.post/<rkey>`.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "postUrls": {
                        "title": "Post URLs (mode=urlFetch)",
                        "type": "array",
                        "description": "Public bsky.app post URLs to expand, e.g. `https://bsky.app/profile/bsky.app/post/3kxxxx`.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "listUri": {
                        "title": "List AT URI (mode=getList)",
                        "type": "string",
                        "description": "AT URI of a Bluesky list (`at://did:plc:.../app.bsky.graph.list/<rkey>`)."
                    },
                    "starterPackUri": {
                        "title": "Starter Pack AT URI (mode=getStarterPack)",
                        "type": "string",
                        "description": "AT URI of a Bluesky starter pack (`at://did:plc:.../app.bsky.graph.starterpack/<rkey>`)."
                    },
                    "feedPreset": {
                        "title": "Feed preset (mode=feed)",
                        "enum": [
                            "whats-hot",
                            "discover",
                            "mutuals",
                            "bsky-team",
                            "hot-classic",
                            "popular-with-friends",
                            "for-you",
                            "news",
                            "trending-videos",
                            "quiet-posters"
                        ],
                        "type": "string",
                        "description": "Built-in Bluesky feed preset. Overrides `feedUri` if both are set."
                    },
                    "feedUri": {
                        "title": "Custom feed AT URI (mode=feed)",
                        "type": "string",
                        "description": "Full AT URI of a feed generator (`at://did:plc:.../app.bsky.feed.generator/<rkey>`). Use this for community feeds not in the preset list."
                    },
                    "language": {
                        "title": "Language filter",
                        "enum": [
                            "",
                            "en",
                            "es",
                            "pt",
                            "ja",
                            "de",
                            "fr",
                            "zh",
                            "ko",
                            "it",
                            "nl",
                            "pl",
                            "ru",
                            "tr",
                            "ar",
                            "hi",
                            "sv",
                            "cs",
                            "fi",
                            "no",
                            "da",
                            "el",
                            "he",
                            "hu",
                            "id",
                            "ro",
                            "sk",
                            "sl",
                            "th",
                            "uk",
                            "vi"
                        ],
                        "type": "string",
                        "description": "ISO 639-1 language code. Drops posts not in this language. Empty = no filter."
                    },
                    "excludeReplies": {
                        "title": "Exclude replies",
                        "type": "boolean",
                        "description": "Drop posts that are replies to another post.",
                        "default": false
                    },
                    "excludeReposts": {
                        "title": "Exclude reposts",
                        "type": "boolean",
                        "description": "Drop posts that are reposts of someone else's post.",
                        "default": false
                    },
                    "mediaOnly": {
                        "title": "Media only",
                        "type": "boolean",
                        "description": "Only emit posts that have at least one image / video / external embed.",
                        "default": false
                    },
                    "minLikes": {
                        "title": "Min likes",
                        "minimum": 0,
                        "maximum": 10000000,
                        "type": "integer",
                        "description": "Drop posts with fewer than this many likes."
                    },
                    "minReposts": {
                        "title": "Min reposts",
                        "minimum": 0,
                        "maximum": 10000000,
                        "type": "integer",
                        "description": "Drop posts with fewer than this many reposts."
                    },
                    "since": {
                        "title": "Since (mode=search)",
                        "type": "string",
                        "description": "Earliest post date as `YYYY-MM-DD`. Bluesky search recency-weights its index; use the explicit `since:` filter for strict date bounds."
                    },
                    "until": {
                        "title": "Until (mode=search)",
                        "type": "string",
                        "description": "Latest post date as `YYYY-MM-DD`."
                    },
                    "fromUser": {
                        "title": "From user (mode=search)",
                        "type": "string",
                        "description": "Restrict search to posts authored by this handle (or DID)."
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Hard cap on emitted records.",
                        "default": 40
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
