{
  "openapi": "3.0.1",
  "info": {
    "title": "eBay Reviews Scraper",
    "description": "Fast, reliable scraper for eBay product reviews and seller feedback. Supports filters, sorting, and 40+ regional domains.",
    "version": "0.1",
    "x-build-id": "TWDgr2ZKPR3Sb6uBo"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/web_wanderer~ebay-reviews-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-web_wanderer-ebay-reviews-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/web_wanderer~ebay-reviews-scraper/runs": {
      "post": {
        "operationId": "runs-sync-web_wanderer-ebay-reviews-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/web_wanderer~ebay-reviews-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-web_wanderer-ebay-reviews-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",
        "properties": {
          "product_urls": {
            "title": "Product / Feedback / Store URLs",
            "uniqueItems": true,
            "type": "array",
            "description": "Direct eBay product page URLs to extract reviews from.\nYou can also pass feedback profile URLs and store URLs; the actor will resolve the correct item and username automatically.",
            "items": {
              "type": "string"
            }
          },
          "include_personal_data": {
            "title": "Include personal information (if available)",
            "type": "boolean",
            "description": "If checked and available on the page, the actor will include any public buyer context exposed with the feedback (for example anonymized handles). eBay usually exposes minimal personal data.",
            "default": false
          },
          "filter_image": {
            "title": "Filter by Images",
            "type": "boolean",
            "description": "Return only feedback that includes images.",
            "default": false
          },
          "filter_automated_feedback": {
            "title": "Filter Auto feedbacks",
            "type": "boolean",
            "description": "Ebay leaves automated positive feedback when a seller successfully completes an order and there’s no buyer feedback about it.",
            "default": false
          },
          "reviews_limit": {
            "title": "Reviews per item",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum number of reviews to crawl per item (or feedback profile).",
            "default": 100
          },
          "sort": {
            "title": "Sort Order",
            "enum": [
              "RELEVANCEV2",
              "TIME"
            ],
            "type": "string",
            "description": "Select how to sort feedback/reviews.",
            "default": "RELEVANCEV2"
          },
          "overall_rating": {
            "title": "Filter by Feedback Rating",
            "enum": [
              "POSITIVE",
              "NEGATIVE",
              "NEUTRAL"
            ],
            "type": "string",
            "description": "Select feedback ratings to filter by."
          },
          "reviews_keywords": {
            "title": "Reviews must contain",
            "uniqueItems": true,
            "type": "array",
            "description": "Enter keywords to filter reviews by their text content\n.Maximum of 5 keywords can be added. Reviews must contain at least one of the keywords to be included.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "domain": {
            "title": "eBay Domain",
            "enum": [
              "ar.ebay.com",
              "bo.ebay.com",
              "br.ebay.com",
              "by.ebay.com",
              "cl.ebay.com",
              "co.ebay.com",
              "cr.ebay.com",
              "do.ebay.com",
              "ec.ebay.com",
              "gt.ebay.com",
              "hn.ebay.com",
              "kz.ebay.com",
              "mx.ebay.com",
              "ni.ebay.com",
              "pa.ebay.com",
              "pe.ebay.com",
              "pr.ebay.com",
              "pt.ebay.com",
              "py.ebay.com",
              "sv.ebay.com",
              "uy.ebay.com",
              "ve.ebay.com",
              "www.ebay.at",
              "www.ebay.be",
              "www.ebay.ca",
              "www.ebay.ch",
              "www.ebay.cn",
              "www.ebay.co.jp",
              "www.ebay.co.kr",
              "www.ebay.co.nz",
              "www.ebay.co.uk",
              "www.ebay.com",
              "www.ebay.com.au",
              "www.ebay.com.hk",
              "www.ebay.com.my",
              "www.ebay.com.sg",
              "www.ebay.com.tw",
              "www.ebay.de",
              "www.ebay.es",
              "www.ebay.fr",
              "www.ebay.ie",
              "www.ebay.in",
              "www.ebay.nl",
              "www.ebay.ph",
              "www.ebay.pl"
            ],
            "type": "string",
            "description": "Select the eBay regional domain to use.",
            "default": "www.ebay.com"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}