{
  "openapi": "3.0.1",
  "info": {
    "title": "Shopify Store Analyzer — Catalogue, Apps & EU Recall Exposure",
    "description": "Analyzes Shopify stores you supply: catalogue stats, price bands, 295 app detectors, tracking pixels, EU compliance pages and brand-level EU recall exposure. Never charges twice for the same store.",
    "version": "0.1",
    "x-build-id": "axZhGckFiJYWhDo9D"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/northwestsouth~shopify-store-analyzer-no-duplicate-billing/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-northwestsouth-shopify-store-analyzer-no-duplicate-billing",
        "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/northwestsouth~shopify-store-analyzer-no-duplicate-billing/runs": {
      "post": {
        "operationId": "runs-sync-northwestsouth-shopify-store-analyzer-no-duplicate-billing",
        "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/northwestsouth~shopify-store-analyzer-no-duplicate-billing/run-sync": {
      "post": {
        "operationId": "run-sync-northwestsouth-shopify-store-analyzer-no-duplicate-billing",
        "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",
        "required": [
          "storeUrls"
        ],
        "properties": {
          "storeUrls": {
            "title": "Shopify store URLs or domains",
            "type": "array",
            "description": "The stores to analyze — bare domains (snocks.com), full URLs or myshopify hosts all work. You supply the list; this actor never harvests store lists from third-party databases.",
            "default": [
              "snocks.com",
              "allbirds.com"
            ],
            "items": {
              "type": "string"
            }
          },
          "includeCatalogue": {
            "title": "Catalogue analysis",
            "type": "boolean",
            "description": "Product and variant counts, vendor and product-type breakdown, price bands, availability rate, new-product velocity (7/30/90 days).",
            "default": true
          },
          "includeApps": {
            "title": "App and tech detection",
            "type": "boolean",
            "description": "Detects installed Shopify apps using 295 fingerprints, plus theme, Shopify Plus status and tracking pixels (GA4, GTM, Meta, TikTok, Pinterest, Klaviyo, Hotjar).",
            "default": true
          },
          "includeCompliance": {
            "title": "EU compliance pages",
            "type": "boolean",
            "description": "Checks whether Impressum, Widerrufsbelehrung, AGB, Datenschutz, Versand and product-safety pages exist. Useful for EU/DACH market research.",
            "default": true
          },
          "includeRecallExposure": {
            "title": "EU recall exposure (unique)",
            "type": "boolean",
            "description": "Matches the store's vendor names against 46,506 official EU Safety Gate (RAPEX) recall alerts. Brand-level and fuzzy — Shopify does not expose barcodes publicly, so this is not a product-level verdict.",
            "default": true
          },
          "maxProductsPerStore": {
            "title": "Max products per store",
            "minimum": 50,
            "maximum": 2000,
            "type": "integer",
            "description": "How many products to read per store (50-2000). Higher means better statistics and slightly longer runs. Does not affect the price — you pay per store, not per product.",
            "default": 250
          },
          "outputFields": {
            "title": "Only these fields (optional)",
            "type": "array",
            "description": "Leave empty for everything. Otherwise list the exact fields you want, e.g. product_count, top_vendors, detected_apps — so your export contains no noise.",
            "items": {
              "type": "string"
            }
          },
          "chargeForPreviouslyAnalyzed": {
            "title": "Re-analyze stores I already paid for",
            "type": "boolean",
            "description": "OFF by default: stores analyzed in any earlier run are skipped and NOT charged again. Turn this on only when you deliberately want fresh data for stores you already have.",
            "default": 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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}