{
  "openapi": "3.0.1",
  "info": {
    "title": "Amazon AI Product Intelligence",
    "description": "Amazon AI Product Intelligence Stream is an advanced, AI-driven Actor designed to provide deep, structured intelligence from the global Amazon marketplace. It is built for targeted competitive and market analysis on e-commerce products.",
    "version": "0.0",
    "x-build-id": "yb6qqtV4UGzc0oOXb"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/visita~amazon-ai-product-intelligence/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-visita-amazon-ai-product-intelligence",
        "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/visita~amazon-ai-product-intelligence/runs": {
      "post": {
        "operationId": "runs-sync-visita-amazon-ai-product-intelligence",
        "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/visita~amazon-ai-product-intelligence/run-sync": {
      "post": {
        "operationId": "run-sync-visita-amazon-ai-product-intelligence",
        "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": [
          "amazonSearchQueries",
          "amazonDomain",
          "maxTotalProducts",
          "maxProductsPerPage",
          "enableAISynthesis",
          "promptSelection"
        ],
        "properties": {
          "amazonSearchQueries": {
            "title": "🔍 Product Search Queries",
            "type": "array",
            "description": "Enter product keywords, one per line (press Enter after each query). The Actor will scrape results for all queries.",
            "items": {
              "type": "string"
            }
          },
          "amazonDomain": {
            "title": "🛍️ Target Amazon Marketplace",
            "enum": [
              "com",
              "co.uk",
              "de",
              "ca",
              "fr",
              "es",
              "it",
              "jp",
              "in",
              "com.au",
              "com.br",
              "nl",
              "sg",
              "ae",
              "co.za"
            ],
            "type": "string",
            "description": "The specific Amazon domain to scrape for regional results. Use '.com' for maximum stability.",
            "default": "com"
          },
          "maxTotalProducts": {
            "title": "Limit: Total Products to Analyze",
            "type": "integer",
            "description": "Controls the total number of unique product pages the Actor will scrape and analyze in one run (limits cost/time).",
            "default": 1
          },
          "maxProductsPerPage": {
            "title": "Products per Search Page",
            "type": "integer",
            "description": "The maximum number of product links to pull from *each* search results page.",
            "default": 1
          },
          "enableAISynthesis": {
            "title": "🧠 Enable AI Analysis (Tier 2)",
            "type": "boolean",
            "description": "Enables the LLM-based structured extraction and final report generation (Tier 2). Setting to false runs a raw crawl (Tier 1).",
            "default": false
          },
          "promptSelection": {
            "title": "🎯 Analysis Objective",
            "enum": [
              "core_summary",
              "technical_specs",
              "customer_sentiment",
              "competitor_identification",
              "custom_input"
            ],
            "type": "string",
            "description": "Choose a pre-defined strategic query, or select 'custom_input' to define your analysis objective.",
            "default": "core_summary"
          },
          "customPrompt": {
            "title": "📝 Custom Prompt Instruction",
            "type": "string",
            "description": "Text used by the AI when 'custom_input' is selected. Example: 'What is the biggest user-reported flaw in the product?'"
          },
          "verboseLog": {
            "title": "Verbose Logging (Debug)",
            "type": "boolean",
            "description": "Enables detailed logging for debugging Playwright and LLM steps.",
            "default": false
          },
          "proxyConfiguration": {
            "title": "⚙️ Proxy Configuration",
            "type": "object",
            "description": "Configuration for the proxies used for web scraping (recommended to avoid blocking)."
          },
          "llmModel": {
            "title": "🧠 LLM Model Selection",
            "enum": [
              "openai/gpt-5",
              "openai/gpt-4o-mini",
              "openai/gpt-4o",
              "openai/gpt-4-turbo",
              "openai/gpt-3.5-turbo"
            ],
            "type": "string",
            "description": "The Large Language Model (LLM) to use for structured data extraction and synthesis.",
            "default": "openai/gpt-4o-mini"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}