# Compare launch velocity across Shopify competitors

**Use case:** 

Measure how many new products each competitor ships per day, correctly, from public catalog dates — with a confidence flag, republish detection, and price bands in USD so stores in different currencies compare.

## Input

```json
{
  "storeUrls": [
    "gymshark.com",
    "allbirds.com",
    "rothys.com",
    "kith.com"
  ],
  "maxProductsPerStore": 1000,
  "requireApps": [],
  "requireAppsMode": "any",
  "requireSignals": [],
  "minProducts": 0,
  "includeProducts": false,
  "detectApps": true,
  "maxConcurrency": 5
}
```

## Output

```json
{
  "store": {
    "label": "Store",
    "format": "string"
  },
  "perDay": {
    "label": "Per day",
    "format": "number"
  },
  "velocityConfidence": {
    "label": "Velocity confidence",
    "format": "string"
  },
  "publishPerDay": {
    "label": "Publish per day",
    "format": "number"
  },
  "publishConfidence": {
    "label": "Publish confidence",
    "format": "string"
  },
  "velocityWindowDays": {
    "label": "Velocity window days",
    "format": "integer"
  },
  "velocitySample": {
    "label": "Velocity sample",
    "format": "integer"
  },
  "lifetimePerDay": {
    "label": "Lifetime per day",
    "format": "number"
  },
  "catalogRepublished": {
    "label": "Catalog republished",
    "format": "boolean"
  },
  "medianPublishLagDays": {
    "label": "Median publish lag days",
    "format": "number"
  },
  "republishShare": {
    "label": "Republish share",
    "format": "number"
  },
  "republishedAt": {
    "label": "Republished at",
    "format": "string"
  },
  "newestAt": {
    "label": "Newest at",
    "format": "string"
  },
  "catalogSize": {
    "label": "Catalog size",
    "format": "integer"
  },
  "catalogComplete": {
    "label": "Catalog complete",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Stores API Velocity, Pricing & Brand Model](https://apify.com/spool/shopify-stores-api.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/spool/shopify-stores-api.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/spool/shopify-stores-api.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
