{
  "openapi": "3.0.1",
  "info": {
    "title": "Chrome Web Store Extension Scraper",
    "description": "Scrape Chrome Web Store extensions and themes. Export user counts, ratings, versions, manifest permissions, publisher contacts and privacy disclosures to JSON, CSV or Excel.",
    "version": "1.0",
    "x-build-id": "CaGORMGYccgacIt7U"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/dariomory~chrome-web-store-extension-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-dariomory-chrome-web-store-extension-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/dariomory~chrome-web-store-extension-scraper/runs": {
      "post": {
        "operationId": "runs-sync-dariomory-chrome-web-store-extension-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/dariomory~chrome-web-store-extension-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-dariomory-chrome-web-store-extension-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": {
          "searchTerms": {
            "title": "Search terms",
            "type": "array",
            "description": "Keywords to search the Chrome Web Store, for example \"dark mode\" or \"crm\". Paginated 50 at a time and returns both extensions and themes.",
            "items": {
              "type": "string"
            }
          },
          "extensionIds": {
            "title": "Extension IDs or detail URLs",
            "type": "array",
            "description": "Exact 32-character extension IDs, or full chromewebstore.google.com/detail/... URLs. Fastest and most precise option.",
            "items": {
              "type": "string"
            }
          },
          "categories": {
            "title": "Categories",
            "type": "array",
            "description": "Browse whole store categories, paginated. Use the official slugs shown in the store URL. The store serves categories as extensions only; use search to collect themes.",
            "items": {
              "type": "string",
              "enum": [
                "productivity/communication",
                "productivity/workflow",
                "productivity/tools",
                "productivity/education",
                "productivity/developer",
                "lifestyle/shopping",
                "lifestyle/news",
                "lifestyle/entertainment",
                "lifestyle/games",
                "lifestyle/social",
                "lifestyle/art",
                "lifestyle/well_being",
                "lifestyle/travel",
                "lifestyle/household",
                "lifestyle/fun",
                "make_chrome_yours/accessibility",
                "make_chrome_yours/functionality",
                "make_chrome_yours/privacy"
              ],
              "enumTitles": [
                "Productivity / Communication",
                "Productivity / Workflow",
                "Productivity / Tools",
                "Productivity / Education",
                "Productivity / Developer",
                "Lifestyle / Shopping",
                "Lifestyle / News",
                "Lifestyle / Entertainment",
                "Lifestyle / Games",
                "Lifestyle / Social",
                "Lifestyle / Art",
                "Lifestyle / Well being",
                "Lifestyle / Travel",
                "Lifestyle / Household",
                "Lifestyle / Fun",
                "Make Chrome Yours / Accessibility",
                "Make Chrome Yours / Functionality",
                "Make Chrome Yours / Privacy"
              ]
            }
          },
          "topCharts": {
            "title": "Top charts",
            "type": "array",
            "description": "Fixed 25-item editorial charts from the store home page.",
            "items": {
              "type": "string",
              "enum": [
                "trending",
                "popular",
                "notable"
              ],
              "enumTitles": [
                "Trending",
                "Popular",
                "Notable"
              ]
            }
          },
          "storefronts": {
            "title": "Store landing shelves",
            "type": "array",
            "description": "Curated picks from the store's Extensions and Themes landing pages. These are fixed shelves (about 50 and 24 items) with no pagination - the Chrome Web Store offers no way to enumerate every item, so use categories or search for bulk collection.",
            "items": {
              "type": "string",
              "enum": [
                "extensions",
                "themes"
              ],
              "enumTitles": [
                "Extensions landing page",
                "Themes landing page"
              ]
            }
          },
          "sortBy": {
            "title": "Sort order",
            "enum": [
              "recommended",
              "mostUsers",
              "highestRated"
            ],
            "type": "string",
            "description": "Ordering for category browsing, matching the store's own Sort by dropdown. Search, top charts, and landing shelves use the store's own ranking.",
            "default": "mostUsers"
          },
          "includeDetails": {
            "title": "Fetch full details for every item",
            "type": "boolean",
            "description": "Adds the full description, screenshots, publisher contact details, privacy disclosures, support and privacy policy URLs, size, and supported languages. Costs one extra request per item.",
            "default": true
          },
          "includeRelated": {
            "title": "Also scrape related extensions",
            "type": "boolean",
            "description": "After the main run, follow the \"related\" extensions listed on each detail page. Requires full details to be enabled.",
            "default": false
          },
          "minUserCount": {
            "title": "Minimum user count",
            "minimum": 0,
            "type": "integer",
            "description": "Skip items with fewer weekly users than this. Set to 0 to keep everything.",
            "default": 0
          },
          "language": {
            "title": "Store language",
            "type": "string",
            "description": "Language code used for store listings, for example en, de, fr, es, nl, or ja. Affects localized titles and descriptions.",
            "default": "en"
          },
          "maxItems": {
            "title": "Maximum items",
            "minimum": 1,
            "maximum": 100000,
            "type": "integer",
            "description": "Maximum number of unique extensions or themes saved across every source.",
            "default": 200
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional. The Chrome Web Store API is public and usually works without a proxy, but a proxy helps on large runs.",
            "default": {
              "useApifyProxy": false
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}