{
  "openapi": "3.0.1",
  "info": {
    "title": "Amazon Reviews Scraper — New Review Monitor",
    "description": "Returns only new Amazon reviews since last run. Cookieless competitor monitor for amazon.com (~8–13 featured reviews; CA/BR fallback if US is walled). ASINs in, JSON out for Clay / n8n / 1-star VOC. Not Helium 10. Fails loud on CAPTCHA. Optional cookies for pagination.",
    "version": "0.0",
    "x-build-id": "acglaSdglJHZihxzA"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/unanimous_venus~amazon-reviews-monitor/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-unanimous_venus-amazon-reviews-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/unanimous_venus~amazon-reviews-monitor/runs": {
      "post": {
        "operationId": "runs-sync-unanimous_venus-amazon-reviews-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/unanimous_venus~amazon-reviews-monitor/run-sync": {
      "post": {
        "operationId": "run-sync-unanimous_venus-amazon-reviews-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",
        "required": [
          "asins"
        ],
        "properties": {
          "asins": {
            "title": "ASINs or product URLs",
            "type": "array",
            "description": "Amazon ASINs (B0CWXNS552) or full product / review URLs. Competitor ASINs you do not own — this is not a Seller Central replacement.",
            "items": {
              "type": "string"
            }
          },
          "marketplace": {
            "title": "Marketplace",
            "enum": [
              "US",
              "IN",
              "DE",
              "UK",
              "CA",
              "BR"
            ],
            "type": "string",
            "description": "Amazon storefront you asked for. US cookieless reviews are often walled (July 2026); we then retry amazon.ca then amazon.com.br unless you turn fallback off.",
            "default": "US"
          },
          "mode": {
            "title": "Job type",
            "enum": [
              "monitor",
              "dump",
              "oneStarPack"
            ],
            "type": "string",
            "description": "monitor = newest first, stop when we hit reviews already seen, bill NEW rows only. dump = research backfill, bill every returned review. oneStarPack = 1–2 star, recent window, images on — the ad-copy / VOC job.",
            "default": "dump"
          },
          "firstRunMode": {
            "title": "First run for an ASIN (monitor / oneStarPack)",
            "enum": [
              "backfill",
              "seed"
            ],
            "type": "string",
            "description": "backfill = first schedule pays dump price and returns reviews (recommended). seed = save IDs only, charge the ASIN check, return no billed reviews until next run.",
            "default": "backfill"
          },
          "maxReviewsPerAsin": {
            "title": "Max reviews per ASIN",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Monitor jobs can use 8–20. Cookieless public data is Amazon's inline product-page block (~8–13 reviews), not 100. Cookie mode can paginate toward 100 per star filter.",
            "default": 20
          },
          "maxPages": {
            "title": "Max review pages per filter",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Used in cookie mode (paginated /product-reviews/). Ignored cookieless — there is no next page on the inline block.",
            "default": 2
          },
          "starFilter": {
            "title": "Star filter",
            "enum": [
              "all",
              "five",
              "four",
              "three",
              "two",
              "one",
              "positive",
              "critical"
            ],
            "type": "string",
            "description": "Client-side on cookieless (only the 8–13 featured reviews). In cookie mode Amazon filters the list.",
            "default": "all"
          },
          "daysBack": {
            "title": "Only reviews from the last N days",
            "minimum": 0,
            "maximum": 365,
            "type": "integer",
            "description": "0 = no date cut. oneStarPack defaults to 30 if you leave this at 0. Parsed from Amazon's review date string.",
            "default": 0
          },
          "verifiedOnly": {
            "title": "Verified purchase only",
            "type": "boolean",
            "description": "Amazon reviewerType=avp_only_reviews. Use for VOC quality, not volume.",
            "default": false
          },
          "includeImages": {
            "title": "Include review image URLs",
            "type": "boolean",
            "description": "Needed for ad creative. On by default for oneStarPack.",
            "default": true
          },
          "failOnBlock": {
            "title": "Fail the run on CAPTCHA or block",
            "type": "boolean",
            "description": "Keep ON. Silent empty successes are how Amazon scrapers get 3-star ratings. A red run is better than junk.",
            "default": true
          },
          "maxConcurrency": {
            "title": "ASIN concurrency",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "How many ASINs to fetch in parallel. Keep low on Amazon.",
            "default": 1
          },
          "countryFallback": {
            "title": "Retry CA / Brazil when US is walled",
            "type": "boolean",
            "description": "amazon.com often returns 0 inline reviews without a login (July 2026). Retry the same ASIN on amazon.ca then amazon.com.br. Output still tags sourceMarketplace so you know where the HTML came from.",
            "default": true
          },
          "amazonCookies": {
            "title": "Amazon session cookie (optional)",
            "type": "string",
            "description": "Full Cookie request header from a throwaway logged-in browser. Unlocks paginated /product-reviews/ (~100 per star). Expired cookies fail the run. Leave empty for cookieless product-page mode.",
            "default": ""
          },
          "stateStoreName": {
            "title": "Named KV store for seen review IDs",
            "type": "string",
            "description": "Persists across scheduled runs in YOUR Apify account. Change it if you want separate monitor tracks.",
            "default": "amazon-reviews-monitor-state"
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Residential is required for Amazon. We pin the proxy country to the marketplace being fetched (US, CA, BR, IN, DE)."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}