{
  "openapi": "3.0.1",
  "info": {
    "title": "Reddit Product Feedback Monitor: Feature Requests",
    "description": "Reddit product feedback scraper for feature requests, regressions, and bug reports. Return evidence-linked clusters and source URLs for product teams, support leads, and researchers. Automate recurring runs with the Apify API, schedules, webhooks, and n8n.",
    "version": "0.1",
    "x-build-id": "yWknD5lS2aIMQK7L8"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/getascraper~reddit-feature-request-regression-feed/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-getascraper-reddit-feature-request-regression-feed",
        "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/getascraper~reddit-feature-request-regression-feed/runs": {
      "post": {
        "operationId": "runs-sync-getascraper-reddit-feature-request-regression-feed",
        "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/getascraper~reddit-feature-request-regression-feed/run-sync": {
      "post": {
        "operationId": "run-sync-getascraper-reddit-feature-request-regression-feed",
        "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": {
          "productName": {
            "title": "Product name",
            "minLength": 1,
            "maxLength": 120,
            "type": "string",
            "description": "The product name used to label and focus the resulting clusters. The prefilled VS Code value is only an example.",
            "default": "VS Code"
          },
          "subreddits": {
            "title": "Subreddits",
            "minItems": 1,
            "maxItems": 10,
            "type": "array",
            "description": "Public subreddit names without r/. The prefilled vscode community is only an example.",
            "items": {
              "type": "string",
              "minLength": 2,
              "maxLength": 21
            },
            "default": [
              "vscode"
            ]
          },
          "eventTypes": {
            "title": "Signal types",
            "minItems": 1,
            "maxItems": 3,
            "type": "array",
            "description": "Keep all three types for broad product discovery, or narrow the feed to a specific signal.",
            "items": {
              "type": "string",
              "enum": [
                "FEATURE_REQUEST",
                "REGRESSION",
                "BUG_REPORT"
              ],
              "enumTitles": [
                "Feature requests",
                "Regressions",
                "Bug reports"
              ]
            },
            "default": [
              "FEATURE_REQUEST",
              "REGRESSION",
              "BUG_REPORT"
            ]
          },
          "keywords": {
            "title": "Optional keywords",
            "maxItems": 20,
            "type": "array",
            "description": "Optional words or phrases that narrow listings and discussion text. Leave empty to discover the selected signal types without a keyword filter.",
            "items": {
              "type": "string",
              "minLength": 1,
              "maxLength": 100
            },
            "default": []
          },
          "lookbackDays": {
            "title": "Lookback window",
            "minimum": 1,
            "maximum": 365,
            "type": "integer",
            "description": "Only consider listing items published within this many days when the public listing provides a timestamp.",
            "default": 30
          },
          "includeComments": {
            "title": "Include public comments",
            "type": "boolean",
            "description": "Optional deepening for available public comments. The cloud-safe prefill stays listing-only; enabling comments may produce PARTIAL coverage when public comment pages or continuations cannot be fully collected.",
            "default": false
          },
          "maxPosts": {
            "title": "Maximum posts",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Maximum matching public posts processed across all selected subreddits.",
            "default": 10
          },
          "maxListingPages": {
            "title": "Maximum listing pages per subreddit",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Maximum public listing pages checked for each subreddit before post collection stops.",
            "default": 1
          },
          "maxCommentsPerPost": {
            "title": "Maximum comments per post",
            "minimum": 0,
            "maximum": 500,
            "type": "integer",
            "description": "Maximum available public comments accounted for from each processed post when comment deepening is enabled. A cap can leave coverage PARTIAL.",
            "default": 50
          },
          "maxContinuationPagesPerPost": {
            "title": "Maximum comment continuation pages per post",
            "minimum": 0,
            "maximum": 10,
            "type": "integer",
            "description": "Maximum additional public comment pages followed for each post when comment deepening is enabled and Reddit exposes a continuation link. A cap can leave coverage PARTIAL.",
            "default": 3
          },
          "resolutionRuns": {
            "title": "Resolution threshold",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Consecutive complete recurring runs in which an earlier cluster is absent before its status can become RESOLVED. Partial or failed runs never count.",
            "default": 3
          },
          "maxConcurrency": {
            "title": "Maximum concurrency",
            "minimum": 1,
            "maximum": 3,
            "type": "integer",
            "description": "Number of public pages fetched at once. Keep this low to be considerate of the source and preserve ordered accounting.",
            "default": 1
          },
          "maxRequestsPerMinute": {
            "title": "Maximum requests per minute",
            "minimum": 1,
            "maximum": 60,
            "type": "integer",
            "description": "Hard request-rate ceiling across listings, posts, and comment continuations.",
            "default": 30
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Cloud-safe prefill for public Reddit listing pages: Apify US residential proxy. Local users can test direct access by disabling the proxy. Proxy traffic costs apply.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ],
              "apifyProxyCountry": "US"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}