{
  "openapi": "3.0.1",
  "info": {
    "title": "Facebook Posts Scraper: Performance Analyzer",
    "description": "Gather comprehensive Facebook post data—text, photos, videos, reactions, comments, and timestamps. Clean, structured output makes it perfect for content analysis, research projects, social monitoring, and automated workflows.",
    "version": "0.1",
    "x-build-id": "ywnowoyn4sYEFvJsa"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/simpleapi~facebook-posts-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-simpleapi-facebook-posts-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/simpleapi~facebook-posts-scraper/runs": {
      "post": {
        "operationId": "runs-sync-simpleapi-facebook-posts-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/simpleapi~facebook-posts-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-simpleapi-facebook-posts-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": [
          "startUrls"
        ],
        "properties": {
          "startUrls": {
            "title": "🏟️ Competitor Pages to Benchmark",
            "type": "array",
            "description": "Two or more Facebook **page** targets to compare against each other. Share-of-voice is most meaningful with 2+ pages.\n\n• **Full URL:** `https://www.facebook.com/nytimes/`\n• **Username only:** `nytimes`, `nasa` — turned into full URLs automatically.\n\nYou can mix URLs and usernames. Each page is scraped in turn, then compared.",
            "items": {
              "type": "string"
            }
          },
          "maxPosts": {
            "title": "📥 Posts to Sample per Page",
            "minimum": 1,
            "maximum": 1000000,
            "type": "integer",
            "description": "How many recent posts to sample from **each** page for the benchmark. The averages and share-of-voice are computed over this sample.\n\n• Minimum: **1** — Maximum: **1,000,000**.\n• Default: **10**. Use a similar count per page for a fair comparison.",
            "default": 10
          },
          "benchmarkOnly": {
            "title": "🏆 Benchmark Rows Only",
            "type": "boolean",
            "description": "**ON** — output only the one aggregated benchmark row per page (share-of-voice comparison), suppressing the raw post rows.\n\n**OFF** (default) — output every raw post (rowType `post`) plus the benchmark rows (rowType `benchmark`).",
            "default": false
          },
          "snapshotKey": {
            "title": "🗂️ Growth Snapshot Key (Prefix)",
            "type": "string",
            "description": "Optional label that separates this benchmark campaign's growth history from others. Snapshots of each page's engagement are stored under this prefix so re-runs compute growth deltas against the right baseline. Leave empty to use a shared default.\n\nExample: `q3-news-brands`."
          },
          "includeVideoTranscript": {
            "title": "🎥 Include Video Transcripts",
            "type": "boolean",
            "description": "**ON** — extract closed captions/transcripts from video & reel posts into the `captionText` field.\n\n**OFF** (default) — faster; video posts still appear with metadata but no transcript.",
            "default": false
          },
          "timeoutMode": {
            "title": "⏱️ Timeout Mode",
            "enum": [
              "auto",
              "manual"
            ],
            "type": "string",
            "description": "How the per-page timeout is determined. **Auto** scales it from the requested post count; **Manual** uses your custom value.",
            "default": "auto"
          },
          "targetTimeoutSecs": {
            "title": "⏳ Per-Page Timeout (seconds)",
            "minimum": 60,
            "maximum": 72000,
            "type": "integer",
            "description": "Used only when Timeout Mode is **Manual**. The actor stops a page when this time limit is reached.",
            "default": 1200
          },
          "oldestPostDateUnified": {
            "title": "📅 Posts Newer Than (Start Date)",
            "type": "string",
            "description": "Only include posts **after** this date in the benchmark.\n\n• **Absolute:** e.g. `2024-01-01`.\n• **Relative:** e.g. `7` days, `2` months, `1` year — counted back from today.\n\nLeave empty to allow any past date."
          },
          "newestPostDate": {
            "title": "⌛ Posts Older Than (End Date)",
            "type": "string",
            "description": "Only include posts **before** this date in the benchmark.\n\n• **Absolute:** e.g. `2024-12-31`.\n• **Relative:** e.g. `0` for today, or a number of days/months/years ago.\n\nLeave empty for no end limit."
          },
          "proxyConfiguration": {
            "title": "🌐 Proxy Settings",
            "type": "object",
            "description": "The actor prefers Apify **Residential** proxy for higher success rates and falls back to **Datacenter**. You can optionally provide custom proxy URLs."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}