{
  "openapi": "3.0.1",
  "info": {
    "title": "Ozon.ru Product Scraper PRO | Парсер товаров Ozon",
    "description": "Full product data for any Ozon URL or search query - pricing, specs, variants, reviews, sellers, price history. Search with filters (price, rating, delivery). Tile-only mode 5x cheaper. JSON/CSV/Excel. No login. | Товары Ozon: цены, характеристики, варианты, отзывы, продавцы, история цен.",
    "version": "0.0",
    "x-build-id": "A8dAiLZkmB19LAdKL"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/zen-studio~ozon-scraper-pro/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-zen-studio-ozon-scraper-pro",
        "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/zen-studio~ozon-scraper-pro/runs": {
      "post": {
        "operationId": "runs-sync-zen-studio-ozon-scraper-pro",
        "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/zen-studio~ozon-scraper-pro/run-sync": {
      "post": {
        "operationId": "run-sync-zen-studio-ozon-scraper-pro",
        "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": {
          "queries": {
            "title": "Поисковые запросы / Search Queries",
            "type": "array",
            "description": "Текстовые запросы для поиска (например, <code>iphone</code>, <code>samsung galaxy</code>). Фильтры ниже применяются только к запросам.<br>Text search queries. Filters below apply to these only.",
            "items": {
              "type": "string"
            }
          },
          "urls": {
            "title": "Ссылки Ozon / Ozon URLs",
            "type": "array",
            "description": "Ссылки на товары, поиск или категории. Короткие ссылки (<code>ozon.ru/t/...</code>) раскрываются автоматически. Фильтры ниже игнорируются — задавайте их в самой ссылке.<br>Product, search, or category URLs. Share links are resolved automatically. Filters below are ignored for URLs.",
            "items": {
              "type": "string"
            }
          },
          "maxResults": {
            "title": "Макс. результатов на запрос (0 = все) / Max Results per Query",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Максимум товаров на один запрос или URL (поиск/категория). <code>0</code> или пусто = собрать все.<br>Maximum products per query or URL (search/category mode only). <code>0</code> or empty = collect all."
          },
          "skipDetails": {
            "title": "Только плитки (без деталей) / Tiles Only (skip details)",
            "type": "boolean",
            "description": "Только для поиска/категорий: вернуть данные с плитки без перехода на страницу товара. Быстрее, меньше полей.<br>Search/category only: return tile-level data without visiting each product page. Much faster, fewer fields.",
            "default": false
          },
          "includeSellerDetails": {
            "title": "Данные о продавце / Include Seller Details",
            "type": "boolean",
            "description": "Загрузить профиль, юрлицо и статистику продавца. Добавляет 1–2 доп. запроса на товар.<br>Fetch seller profile, legal info, and stats.",
            "default": false
          },
          "sorting": {
            "title": "Сортировка / Sort Order",
            "enum": [
              "score",
              "new",
              "price",
              "price_desc",
              "rating",
              "discount"
            ],
            "type": "string",
            "description": "Применяется только к поисковым запросам, не к ссылкам.<br>Only applies to Search Queries, not URLs.",
            "default": "score"
          },
          "minPrice": {
            "title": "Мин. цена (₽) / Min Price (rubles)",
            "minimum": 0,
            "type": "integer",
            "description": "Минимальная цена в рублях. Только для поисковых запросов.<br>Minimum price filter in rubles. Only applies to Search Queries."
          },
          "maxPrice": {
            "title": "Макс. цена (₽) / Max Price (rubles)",
            "minimum": 0,
            "type": "integer",
            "description": "Максимальная цена в рублях. Только для поисковых запросов.<br>Maximum price filter in rubles. Only applies to Search Queries."
          },
          "delivery": {
            "title": "Скорость доставки / Delivery Speed",
            "enum": [
              "1",
              "2",
              "4",
              "8"
            ],
            "type": "string",
            "description": "Только для поисковых запросов.<br>Only applies to Search Queries."
          },
          "onSale": {
            "title": "Только распродажа / On Sale Only",
            "type": "boolean",
            "description": "Только для поисковых запросов.<br>Only applies to Search Queries.",
            "default": false
          },
          "hasDiscount": {
            "title": "Только со скидкой / Discounted Items Only",
            "type": "boolean",
            "description": "Только для поисковых запросов.<br>Only applies to Search Queries.",
            "default": false
          },
          "brandCertified": {
            "title": "Оригинальные товары / Authentic Products Only",
            "type": "boolean",
            "description": "Только для поисковых запросов.<br>Only applies to Search Queries.",
            "default": false
          },
          "isInstallment": {
            "title": "Рассрочка / Installment Available",
            "type": "boolean",
            "description": "Только для поисковых запросов.<br>Only applies to Search Queries.",
            "default": false
          },
          "hasReviewPoints": {
            "title": "Баллы за отзывы / Review Points Available",
            "type": "boolean",
            "description": "Только для поисковых запросов.<br>Only applies to Search Queries.",
            "default": false
          },
          "language": {
            "title": "Язык / Language",
            "enum": [
              "ru",
              "en",
              "zh-Hans",
              "kk",
              "hy",
              "uz-Latn"
            ],
            "type": "string",
            "description": "Язык названий, описаний и характеристик товаров.<br>Language for product titles, descriptions, and specs.",
            "default": "ru"
          },
          "currency": {
            "title": "Валюта / Currency",
            "enum": [
              "RUB",
              "USD",
              "BYN",
              "KZT",
              "ILS",
              "AMD",
              "UZS",
              "KGS",
              "AZN",
              "GEL",
              "MNT",
              "AUD",
              "CAD",
              "CHF",
              "CNY",
              "CZK",
              "DKK",
              "GBP",
              "JPY",
              "MDL",
              "NOK",
              "PLN",
              "SEK",
              "SGD",
              "TRY",
              "UAH"
            ],
            "type": "string",
            "description": "Валюта отображения цен. Оплата всегда в рублях.<br>Display currency for prices. Actual payment is always in rubles.",
            "default": "RUB"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}