{
  "openapi": "3.0.1",
  "info": {
    "title": "🦋 Bluesky Scraper — Profiles, Posts, Search & Threads",
    "description": "Extract Bluesky profiles, feeds, profile and post search, exact posts, reply threads, followers, following, and liked posts with rich media, facets, verification and engagement data.",
    "version": "0.2",
    "x-build-id": "K0DdipKWJNtDjuQrr"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/snuggly_beanie_970~bluesky-profile-author-feed-monitor/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-snuggly_beanie_970-bluesky-profile-author-feed-monitor",
        "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/snuggly_beanie_970~bluesky-profile-author-feed-monitor/runs": {
      "post": {
        "operationId": "runs-sync-snuggly_beanie_970-bluesky-profile-author-feed-monitor",
        "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/snuggly_beanie_970~bluesky-profile-author-feed-monitor/run-sync": {
      "post": {
        "operationId": "run-sync-snuggly_beanie_970-bluesky-profile-author-feed-monitor",
        "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": {
          "actors": {
            "title": "🦋 Profiles / handles / DIDs",
            "type": "array",
            "description": "Handles, @handles, profile URLs or did: identifiers.",
            "default": [
              "bsky.app"
            ],
            "items": {
              "type": "string"
            }
          },
          "searchActors": {
            "title": "🔎 Search profiles",
            "type": "array",
            "description": "Profile search queries. Each query has its own result limit.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "searchPosts": {
            "title": "🔎 Search posts",
            "type": "array",
            "description": "Post search queries, including phrases and supported operators.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "postUrls": {
            "title": "🧵 Post URLs / AT URIs",
            "type": "array",
            "description": "Fetch exact posts or complete reply threads.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "includeProfile": {
            "title": "Include profile details",
            "type": "boolean",
            "description": "Export a rich profile row for each actor.",
            "default": true
          },
          "includePosts": {
            "title": "Include author feed",
            "type": "boolean",
            "description": "Export recent posts from each actor's author feed.",
            "default": true
          },
          "includeReplies": {
            "title": "Include replies in feeds",
            "type": "boolean",
            "description": "Include posts that reply to another post.",
            "default": false
          },
          "includeReposts": {
            "title": "Include reposts in feeds",
            "type": "boolean",
            "description": "Include posts reposted by the requested actor.",
            "default": false
          },
          "includeFollowers": {
            "title": "Include followers",
            "type": "boolean",
            "description": "Export profiles following each actor.",
            "default": false
          },
          "includeFollowing": {
            "title": "Include following",
            "type": "boolean",
            "description": "Export profiles followed by each actor.",
            "default": false
          },
          "includeLikes": {
            "title": "Include liked posts",
            "type": "boolean",
            "description": "Export publicly visible liked posts from each actor's repository.",
            "default": false
          },
          "includeThreadReplies": {
            "title": "Expand post threads",
            "type": "boolean",
            "description": "For post URLs / AT URIs, export the root and nested replies.",
            "default": false
          },
          "includePostLikers": {
            "title": "Include post likers",
            "type": "boolean",
            "description": "For post URLs / AT URIs, export profiles that liked each post.",
            "default": false
          },
          "includePostReposters": {
            "title": "Include post reposters",
            "type": "boolean",
            "description": "For post URLs / AT URIs, export profiles that reposted each post.",
            "default": false
          },
          "includeQuotePosts": {
            "title": "Include quote posts",
            "type": "boolean",
            "description": "For post URLs / AT URIs, export posts that quote each post.",
            "default": false
          },
          "maxPostsPerActor": {
            "title": "Maximum feed posts per actor",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Independent author-feed result cap for every actor.",
            "default": 25
          },
          "maxRelationshipsPerActor": {
            "title": "Maximum graph / liked rows per actor",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Independent cap for followers, following and liked posts.",
            "default": 100
          },
          "maxSearchResults": {
            "title": "Maximum results per search",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Independent cap for every actor or post search query.",
            "default": 100
          },
          "maxThreadReplies": {
            "title": "Maximum rows per thread",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum root and nested reply rows exported for each thread.",
            "default": 100
          },
          "maxEngagementPerPost": {
            "title": "Maximum engagement rows per post",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Independent cap for likers, reposters and quote posts for every input post.",
            "default": 100
          },
          "sort": {
            "title": "Post search sort",
            "enum": [
              "latest",
              "top"
            ],
            "type": "string",
            "description": "Order post-search results by recency or relevance/engagement.",
            "default": "latest"
          },
          "postedAfter": {
            "title": "Posted after",
            "type": "string",
            "description": "Optional inclusive ISO date or YYYY-MM-DD.",
            "default": ""
          },
          "postedBefore": {
            "title": "Posted before",
            "type": "string",
            "description": "Optional inclusive ISO date or YYYY-MM-DD.",
            "default": ""
          },
          "languages": {
            "title": "Languages",
            "type": "array",
            "description": "Optional BCP-47 codes such as en, de, ja.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "mediaOnly": {
            "title": "Media posts only",
            "type": "boolean",
            "description": "Keep posts with image or video media URLs.",
            "default": false
          },
          "seenPostUris": {
            "title": "Already seen post AT URIs",
            "type": "array",
            "description": "Stable post URIs to skip on recurring runs.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "requestDelayMs": {
            "title": "Delay between API calls (ms)",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Optional pacing delay for long collection jobs.",
            "default": 0
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}