{
  "openapi": "3.0.1",
  "info": {
    "title": "Reddit MCP Scraper Pro (Multi-Mode)",
    "description": "Unified Reddit scraper — run subreddit, comments and profile modes in a single execution. Advanced filters: minScore, maxAgeDays, excludeNsfw, keywordFilter, authorFilter, maxDepth. Every record is tagged with recordType so downstream pipelines can route easily. No login required.",
    "version": "1.0",
    "x-build-id": "S3acLaH9cIMfBU2BB"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/crawlerbros~reddit-mcp-scraper-pro/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-crawlerbros-reddit-mcp-scraper-pro",
        "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~reddit-mcp-scraper-pro/runs": {
      "post": {
        "operationId": "runs-sync-crawlerbros-reddit-mcp-scraper-pro",
        "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~reddit-mcp-scraper-pro/run-sync": {
      "post": {
        "operationId": "run-sync-crawlerbros-reddit-mcp-scraper-pro",
        "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": {
          "mode": {
            "title": "Scraping mode (single)",
            "enum": [
              "subreddit",
              "comments",
              "profile"
            ],
            "type": "string",
            "description": "Single mode (back-compat). Use `modes` for running multiple modes in one run.",
            "default": "subreddit"
          },
          "modes": {
            "title": "Modes (multiple, Pro)",
            "type": "array",
            "description": "Run multiple modes in a single execution (e.g. `[\"subreddit\", \"profile\"]`). When set, overrides the single `mode` field.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "subreddits": {
            "title": "Subreddit names (for subreddit mode)",
            "type": "array",
            "description": "List of subreddit names without `r/` prefix.",
            "items": {
              "type": "string"
            }
          },
          "maxPosts": {
            "title": "Max posts",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Max posts per subreddit or profile.",
            "default": 25
          },
          "sort": {
            "title": "Sort posts by",
            "enum": [
              "hot",
              "new",
              "top",
              "rising",
              "controversial"
            ],
            "type": "string",
            "description": "How to sort posts on the listing.",
            "default": "hot"
          },
          "timeFilter": {
            "title": "Time filter (top/controversial)",
            "enum": [
              "hour",
              "day",
              "week",
              "month",
              "year",
              "all"
            ],
            "type": "string",
            "description": "Time range for `top` or `controversial` sorts.",
            "default": "day"
          },
          "postUrls": {
            "title": "Post URLs (for comments mode)",
            "type": "array",
            "description": "List of Reddit post URLs.",
            "items": {
              "type": "string"
            }
          },
          "maxComments": {
            "title": "Max comments",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Max comments per post (in comments mode).",
            "default": 100
          },
          "expandThreads": {
            "title": "Expand comment threads",
            "type": "boolean",
            "description": "Click 'load more comments' buttons to expand collapsed threads.",
            "default": true
          },
          "usernames": {
            "title": "Usernames (for profile mode)",
            "type": "array",
            "description": "Reddit usernames. Accepts plain, `u/spez`, or full URLs.",
            "items": {
              "type": "string"
            }
          },
          "section": {
            "title": "Profile section",
            "enum": [
              "submitted",
              "comments",
              "gilded"
            ],
            "type": "string",
            "description": "Which profile section to scrape in profile mode.",
            "default": "submitted"
          },
          "minScore": {
            "title": "Min score (filter)",
            "minimum": -10000,
            "maximum": 10000000,
            "type": "integer",
            "description": "Drop records with score below this. Applies to posts and comments alike."
          },
          "maxAgeDays": {
            "title": "Max age in days (filter)",
            "minimum": 1,
            "maximum": 36500,
            "type": "integer",
            "description": "Drop records older than N days."
          },
          "excludeNsfw": {
            "title": "Exclude NSFW",
            "type": "boolean",
            "description": "Drop NSFW posts.",
            "default": false
          },
          "keywordFilter": {
            "title": "Keyword filter (substring)",
            "type": "string",
            "description": "Only emit records whose title/content/text contains this substring (case-insensitive)."
          },
          "authorFilter": {
            "title": "Author filter (substring)",
            "type": "string",
            "description": "Only emit records by this author (case-insensitive substring match)."
          },
          "maxDepth": {
            "title": "Max comment depth",
            "minimum": 0,
            "maximum": 50,
            "type": "integer",
            "description": "(Comments mode) Drop comments deeper than N levels."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}