{
  "openapi": "3.0.1",
  "info": {
    "title": "Chrome Web Store Extensions Scraper",
    "description": "Scrape Chrome Web Store extensions: users, precise rating, rating count, version, update date, category, size and manifest permissions. Fast HTTP, no browser, no login.",
    "version": "0.6",
    "x-build-id": "Izo7s6Wfxg5rEehBK"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/succinct_glider~chrome-web-store-extensions/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-succinct_glider-chrome-web-store-extensions",
        "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/succinct_glider~chrome-web-store-extensions/runs": {
      "post": {
        "operationId": "runs-sync-succinct_glider-chrome-web-store-extensions",
        "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/succinct_glider~chrome-web-store-extensions/run-sync": {
      "post": {
        "operationId": "run-sync-succinct_glider-chrome-web-store-extensions",
        "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": {
          "mode": {
            "title": "What to scrape",
            "enum": [
              "extensions",
              "categories"
            ],
            "type": "string",
            "description": "Scrape the extensions of your list, or discover the top extensions of Chrome Web Store categories.",
            "default": "extensions"
          },
          "extensions": {
            "title": "Extensions",
            "type": "array",
            "description": "Used with \"Extensions from my list\". Extension IDs (32 letters) or Chrome Web Store detail URLs, one per line. Example: https://chromewebstore.google.com/detail/dark-reader/eimadpbcbfnmbkopoojfekhnkhdbieeh",
            "items": {
              "type": "string"
            }
          },
          "categories": {
            "title": "Categories",
            "type": "array",
            "description": "Used with \"Top extensions of store categories\". Each category page lists its top 32 extensions; the filters below are applied before any extension page is read.",
            "items": {
              "type": "string",
              "enum": [
                "productivity/communication",
                "productivity/developer",
                "productivity/education",
                "productivity/tools",
                "productivity/workflow",
                "lifestyle/art",
                "lifestyle/entertainment",
                "lifestyle/games",
                "lifestyle/household",
                "lifestyle/fun",
                "lifestyle/news",
                "lifestyle/shopping",
                "lifestyle/social",
                "lifestyle/travel",
                "lifestyle/well_being",
                "make_chrome_yours/accessibility",
                "make_chrome_yours/functionality",
                "make_chrome_yours/privacy"
              ],
              "enumTitles": [
                "Productivity › Communication",
                "Productivity › Developer Tools",
                "Productivity › Education",
                "Productivity › Tools",
                "Productivity › Workflow & Planning",
                "Lifestyle › Art & Design",
                "Lifestyle › Entertainment",
                "Lifestyle › Games",
                "Lifestyle › Household",
                "Lifestyle › Just for Fun",
                "Lifestyle › News & Weather",
                "Lifestyle › Shopping",
                "Lifestyle › Social Networking",
                "Lifestyle › Travel",
                "Lifestyle › Well-being",
                "Make Chrome yours › Accessibility",
                "Make Chrome yours › Functionality & UI",
                "Make Chrome yours › Privacy & Security"
              ]
            }
          },
          "minUsers": {
            "title": "Minimum users",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only listed extensions with at least this many users.",
            "default": 0
          },
          "minRating": {
            "title": "Minimum rating",
            "minimum": 0,
            "maximum": 5,
            "type": "number",
            "description": "Keep only listed extensions rated at least this much (0 to 5).",
            "default": 0
          },
          "keyword": {
            "title": "Keyword",
            "type": "string",
            "description": "Keep only listed extensions whose name or short description contains this text (case-insensitive)."
          },
          "maxPermissionRiskLevel": {
            "title": "Maximum permission risk level",
            "enum": [
              "low",
              "medium",
              "high"
            ],
            "type": "string",
            "description": "Keep only listed extensions up to this permission risk level.",
            "default": "high"
          },
          "maxItems": {
            "title": "Max extensions",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Maximum number of extensions to scrape. Extra entries are ignored.",
            "default": 100
          },
          "includeDescription": {
            "title": "Include full description",
            "type": "boolean",
            "description": "Include the full store description. Disable it to get smaller results.",
            "default": true
          },
          "trackChanges": {
            "title": "Track changes",
            "type": "boolean",
            "description": "Compare each extension with its state from the previous tracked run and add changeStatus (new, changed, unchanged), changedFields and previousValues to the results. Ideal with a schedule. The state is kept in a key-value store of your Apify account.",
            "default": false
          },
          "onlyChanges": {
            "title": "Only save new and changed extensions",
            "type": "boolean",
            "description": "Skip unchanged extensions: they are not saved to the dataset, so you are not charged for them. Enables change tracking automatically.",
            "default": false
          },
          "stateStoreName": {
            "title": "State store name",
            "pattern": "^[a-zA-Z0-9-]{1,63}$",
            "type": "string",
            "description": "Name of the key-value store that keeps the previous state. Use a different name for each independent list you track. Letters, digits and hyphens only.",
            "default": "chrome-web-store-extensions-state"
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional, not needed by default. Avoid proxies located in the EU: Google redirects them to a cookie consent page.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}