{
  "openapi": "3.0.1",
  "info": {
    "title": "Argos Scraper [$4💰] | UK Prices | Stock | Product Data",
    "description": "Argos scraper for UK product data: extract prices, was-prices, ratings, reviews, availability and delivery from argos.co.uk categories, search, clearance and product pages — no official Argos API needed. Optional detail mode adds descriptions, features, specs and images. From $0.004 per result.",
    "version": "0.1",
    "x-build-id": "JY2RlmlCQduCHBjQV"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/ahmed_jasarevic~argos-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-ahmed_jasarevic-argos-scraper",
        "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/ahmed_jasarevic~argos-scraper/runs": {
      "post": {
        "operationId": "runs-sync-ahmed_jasarevic-argos-scraper",
        "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/ahmed_jasarevic~argos-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-ahmed_jasarevic-argos-scraper",
        "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": {
          "startUrls": {
            "title": "URLs to scrape",
            "type": "array",
            "description": "Category/browse, search, clearance or single product URLs. One per line.",
            "items": {
              "type": "string"
            }
          },
          "category": {
            "title": "Category (c:ID or URL)",
            "type": "string",
            "description": "Scrape a whole browse category, e.g. c:30049 or a full browse URL."
          },
          "search": {
            "title": "Search keywords",
            "type": "string",
            "description": "Scrape Argos search results, e.g. wireless headphones."
          },
          "product": {
            "title": "Product IDs",
            "type": "array",
            "description": "Direct product catalogue numbers or product URLs (one per line).",
            "items": {
              "type": "string"
            }
          },
          "mode": {
            "title": "Mode",
            "enum": [
              "scrape",
              "monitor"
            ],
            "type": "string",
            "description": "scrape = push every product as found. monitor = compare each product with the previous run (state kept in a key-value store) and push only what changed (price, stock/availability), enriched with changeType, previousPrice, priceDelta, firstSeenAt, lastSeenAt and changeCount. Schedule the Actor for price/stock tracking.",
            "default": "scrape"
          },
          "notifyOn": {
            "title": "Monitor: report changes for",
            "type": "array",
            "description": "Which changes to push in monitor mode (one per line): any-change (report every detected difference), new, price-drop, price-rise, back-in-stock, out-of-stock, availability-change, changed. Leave empty for any-change.",
            "items": {
              "type": "string"
            },
            "default": [
              "any-change"
            ]
          },
          "stateStoreName": {
            "title": "Monitor: state store name",
            "type": "string",
            "description": "Key-value store (persists across runs) that remembers the previous price/stock per product. Use a different name to keep separate watchlists independent.",
            "default": "argos-monitor-state"
          },
          "resetState": {
            "title": "Monitor: reset state",
            "type": "boolean",
            "description": "Delete the stored state before this run, so every product is treated as new (fresh baseline).",
            "default": false
          },
          "pages": {
            "title": "Max pages per listing",
            "minimum": 0,
            "type": "integer",
            "description": "Max listing pages to walk per category/search (0 = walk to the end).",
            "default": 0
          },
          "maxProducts": {
            "title": "Max products",
            "minimum": 1,
            "maximum": 100000,
            "type": "integer",
            "description": "Stop after this many unique products.",
            "default": 2000
          },
          "recurse": {
            "title": "Follow hub (CLP) subcategories",
            "minimum": 0,
            "maximum": 10,
            "type": "integer",
            "description": "If the URL is a category hub page, follow its subcategory links up to this depth (0 = do not recurse).",
            "default": 0
          },
          "maxHubs": {
            "title": "Max hubs to follow per page",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Caps how many subcategory links are followed per hub page.",
            "default": 150
          },
          "detail": {
            "title": "Fetch full product detail pages",
            "type": "boolean",
            "description": "Also fetch every product page (JSON-LD + HTML) for description, features, specs, availability, delivery, images and breadcrumbs. Slower, but more data per product.",
            "default": false
          },
          "detailConcurrency": {
            "title": "Detail fetch concurrency",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Parallel product-detail requests when detail is enabled.",
            "default": 8
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Proxies used to load Argos pages. Argos is protected by Akamai, which blocks datacenter IPs, and it currently rejects UK/EU residential exits too — a RESIDENTIAL proxy group is required. With the Apify proxy the scraper automatically rotates exit countries (worldwide/US/CA/AU) and ignores the country set here. Default: Apify RESIDENTIAL. You can also paste your own proxy URLs instead.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          },
          "maxRetries": {
            "title": "Retries per URL",
            "minimum": 0,
            "maximum": 20,
            "type": "integer",
            "description": "Retries per URL on block, timeout or network error.",
            "default": 4
          },
          "timeoutMs": {
            "title": "Request timeout (ms)",
            "minimum": 1000,
            "maximum": 120000,
            "type": "integer",
            "description": "Per-request timeout in milliseconds.",
            "default": 30000
          },
          "concurrency": {
            "title": "Request concurrency",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Parallel page/product fetches.",
            "default": 5
          },
          "delayMs": {
            "title": "Delay between pages (ms)",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Pause between listing pages to stay polite.",
            "default": 300
          }
        }
      },
      "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}