{
  "openapi": "3.0.1",
  "info": {
    "title": "Trustpilot Reviews Scraper | 💵$0.50/1K",
    "description": "[💵 $0.50 / 1K] Scrape Trustpilot reviews with star, date, language, verified, and reply filters. Company data and reputation insights included.",
    "version": "0.1",
    "x-build-id": "iulhcwaGfUTGd0Oz5"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/webdata_labs~trustpilot-review-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-webdata_labs-trustpilot-review-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/webdata_labs~trustpilot-review-scraper/runs": {
      "post": {
        "operationId": "runs-sync-webdata_labs-trustpilot-review-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/webdata_labs~trustpilot-review-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-webdata_labs-trustpilot-review-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": {
          "companyUrls": {
            "title": "Company URLs or domains",
            "type": "array",
            "description": "Enter domains such as apify.com or full Trustpilot review URLs. You can add up to 50 companies in one run.",
            "default": [
              "apify.com"
            ],
            "items": {
              "type": "string"
            }
          },
          "maxReviewsPerCompany": {
            "title": "Maximum reviews per company",
            "minimum": 0,
            "maximum": 50000,
            "type": "integer",
            "description": "Maximum matching reviews to export for each company. Runs work immediately for the latest 200 reviews. For older or full-history results, add your optional Trustpilot API key under Advanced.",
            "default": 10
          },
          "stars": {
            "title": "Star ratings",
            "type": "array",
            "description": "Optional. Leave empty for all ratings, or select one or more ratings. Select 1 and 2 for complaint monitoring.",
            "items": {
              "type": "string",
              "enum": [
                "1",
                "2",
                "3",
                "4",
                "5"
              ],
              "enumTitles": [
                "1 star",
                "2 stars",
                "3 stars",
                "4 stars",
                "5 stars"
              ]
            },
            "default": []
          },
          "dateRange": {
            "title": "Published date range",
            "enum": [
              "all",
              "last30days",
              "last3months",
              "last6months",
              "last12months",
              "custom"
            ],
            "type": "string",
            "description": "Limit reviews by publication date. Choose Custom dates to use the fields below.",
            "default": "all"
          },
          "dateFrom": {
            "title": "Published from",
            "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$",
            "type": "string",
            "description": "Optional inclusive start date. It can also refine a preset range."
          },
          "dateTo": {
            "title": "Published until",
            "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$",
            "type": "string",
            "description": "Optional inclusive end date."
          },
          "languages": {
            "title": "Review languages",
            "type": "array",
            "description": "Optional ISO language codes such as en, de, fr, es, or nl. Leave empty for every language.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "verificationStatus": {
            "title": "Verification status",
            "enum": [
              "all",
              "verified",
              "invited",
              "unverified"
            ],
            "type": "string",
            "description": "Keep all reviews or focus on Trustpilot-verified, invited, or other unverified reviews.",
            "default": "all"
          },
          "replyStatus": {
            "title": "Company reply",
            "enum": [
              "all",
              "withReplies",
              "withoutReplies"
            ],
            "type": "string",
            "description": "Keep all reviews, only reviews with a company reply, or only unanswered reviews.",
            "default": "all"
          },
          "sort": {
            "title": "Review order",
            "enum": [
              "recency",
              "relevance"
            ],
            "type": "string",
            "description": "Newest first is best for monitoring. Most relevant is useful for general research.",
            "default": "recency"
          },
          "includeReviewerDetails": {
            "title": "Include public reviewer details",
            "type": "boolean",
            "description": "Include the public reviewer name, country, profile ID, avatar, and review count when available.",
            "default": true
          },
          "includeCompanyInfo": {
            "title": "Add company data to every review",
            "type": "boolean",
            "description": "Include company name, domain, TrustScore, stars, total review count, categories, and URLs on each review row.",
            "default": true
          },
          "includeThemes": {
            "title": "Add complaint themes",
            "type": "boolean",
            "description": "Add lightweight themes for support, billing/refunds, delivery, fraud concerns, quality, ease of use, and speed.",
            "default": true
          },
          "includeTrustpilotTopics": {
            "title": "Include Trustpilot topic summaries",
            "type": "boolean",
            "description": "Add Trustpilot-provided company topic summaries to the free run summary when available.",
            "default": true
          },
          "pageLoadWaitMs": {
            "title": "Extra page-load wait (ms)",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Advanced reliability setting. Keep the default unless a company returns incomplete data.",
            "default": 1500
          },
          "trustpilotApiKey": {
            "title": "Trustpilot API key for full history",
            "type": "string",
            "description": "Optional. Leave empty for the latest 200 public reviews. Add your Trustpilot developer API key only when you need older or full-history exports (up to 50,000 matching reviews)."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}