{
  "openapi": "3.0.1",
  "info": {
    "title": "Eezee Scraper - Singapore B2B Industrial & MRO Products",
    "description": "Scrape Eezee.sg, Singapore's B2B industrial & MRO marketplace — products, multi-currency prices, brands, categories, specs, MOQ, lead time, bulk discounts, images and supplier email leads. Filter by keyword, category, brand or price; monitor price changes. No login or API key.",
    "version": "0.1",
    "x-build-id": "KER1p4VQfdiWpT0fB"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapesage~eezee-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapesage-eezee-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/scrapesage~eezee-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapesage-eezee-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/scrapesage~eezee-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapesage-eezee-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": {
          "searchTerms": {
            "title": "Search keywords",
            "type": "array",
            "description": "Product keywords to search Eezee for — each runs a separate storefront search and returns diverse, relevant products. Use product-type words, not category names. Examples: <code>drill</code>, <code>safety gloves</code>, <code>cable ties</code>, <code>fire extinguisher</code>, <code>3M tape</code>. <b>Leave empty to sweep the whole catalogue</b> across 60+ built-in product categories.",
            "items": {
              "type": "string"
            }
          },
          "categories": {
            "title": "Categories filter",
            "type": "array",
            "description": "Optional. From the search results, keep only products in these categories (matched on main/sub category name or slug). Examples: <code>safety</code>, <code>power-tools</code>, <code>industrial-consumable-goods</code>, <code>laboratory-consumable-apparatus</code>, <code>it-electronics</code>, <code>cleaning</code>, <code>lightings</code>, <code>test-measurement</code>.",
            "items": {
              "type": "string"
            }
          },
          "brands": {
            "title": "Brands filter",
            "type": "array",
            "description": "Optional. From the search results, keep only these brands (matched on brand name or slug). Examples: <code>3M</code>, <code>Bosch</code>, <code>Makita</code>, <code>RS Pro</code>, <code>Safety Jogger</code>.",
            "items": {
              "type": "string"
            }
          },
          "currency": {
            "title": "Price currency",
            "enum": [
              "SGD",
              "MYR",
              "THB",
              "IDR",
              "PHP",
              "USD"
            ],
            "type": "string",
            "description": "Currency used for the headline <code>price</code> / <code>priceFormatted</code> and for the price filters below. Every record also carries <code>priceByCurrency</code> with all currencies. Eezee serves Singapore (SGD) plus Malaysia, Thailand, Indonesia and the Philippines.",
            "default": "SGD"
          },
          "minPrice": {
            "title": "Minimum price",
            "minimum": 0,
            "type": "integer",
            "description": "Only include products at or above this price (in the selected currency). 0 = no minimum.",
            "default": 0
          },
          "maxPrice": {
            "title": "Maximum price",
            "minimum": 0,
            "type": "integer",
            "description": "Only include products at or below this price (in the selected currency). 0 = no maximum.",
            "default": 0
          },
          "enquiryType": {
            "title": "Buy-now vs quote products",
            "enum": [
              "all",
              "buy_now",
              "quote"
            ],
            "type": "string",
            "description": "Filter by how the product is sold: <b>All</b> (default), <b>Buy now</b> (priced, add-to-cart products) or <b>Quote / enquiry</b> (request-a-quote products).",
            "default": "all"
          },
          "includeInactive": {
            "title": "Include inactive / discontinued products",
            "type": "boolean",
            "description": "By default only live, in-catalogue products are returned. Turn ON to also include hidden, inactive or discontinued products (useful for full historical catalogue audits).",
            "default": false
          },
          "maxResults": {
            "title": "Max results (total)",
            "minimum": 0,
            "type": "integer",
            "description": "Stop after this many products (0 = no limit). Eezee lists 10,000+ products, so keep a cap for test runs.",
            "default": 100
          },
          "maxPagesPerQuery": {
            "title": "Max pages per search",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "How many result pages (60 products each) to fetch per search keyword. Eezee's search pages overlap, so 2–3 captures most unique results; raise it to dig deeper for broad keywords. 1–10.",
            "default": 3
          },
          "monitorMode": {
            "title": "Monitor mode — only new & price-changed products",
            "type": "boolean",
            "description": "Output only products that are <b>new</b> or whose <b>price changed</b> since the last run for the same input. Each row is tagged with <code>monitorStatus</code> (<code>new</code>, <code>price_drop</code>, <code>price_increase</code>) and, for price changes, <code>previousPrice</code>. The first run emits everything and seeds the state. Pairs perfectly with Apify Schedules — see the README.",
            "default": false
          },
          "dedupStoreName": {
            "title": "Monitor state store name",
            "type": "string",
            "description": "Named key-value store that holds the 'seen products' state for monitor mode. Use a distinct name per independent monitor (e.g. per saved search) so their states don't mix.",
            "default": "eezee-scraper-state"
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Proxy settings. Eezee's API works well over the default Apify proxy; switch to Singapore residential only if you hit persistent blocks.",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}