{
  "openapi": "3.0.1",
  "info": {
    "title": "noon.com Product, Price, Seller & Category Scraper",
    "description": "Eight noon.com scrapers in one - no login, no browser, no captcha. Search keywords, walk categories and brands, pull full product detail, and list every seller competing on a SKU with its own price, stock and delivery. All 7 noon storefronts, English or Arabic.",
    "version": "0.0",
    "x-build-id": "LWFHKjw81Jbf5tVJB"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/fanndev~noon-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-fanndev-noon-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/fanndev~noon-scraper/runs": {
      "post": {
        "operationId": "runs-sync-fanndev-noon-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/fanndev~noon-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-fanndev-noon-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",
        "required": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "What do you want to scrape?",
            "enum": [
              "search",
              "category",
              "brand",
              "product",
              "offers",
              "categoryTree",
              "facets",
              "minutesSearch"
            ],
            "type": "string",
            "description": "Pick one job per run. Search / Category / Brand return product listings. Product detail and Seller offers take SKUs or product URLs. Category tree and Filters & facets are research helpers. noon Minutes searches the 15-minute grocery catalogue instead of the main marketplace.",
            "default": "search"
          },
          "searchKeywords": {
            "title": "Search keywords",
            "type": "array",
            "description": "Used by Search, Filters & facets and noon Minutes. One keyword per line, for example: iphone",
            "items": {
              "type": "string"
            }
          },
          "categoryPaths": {
            "title": "Category paths or URLs",
            "type": "array",
            "description": "Used by Category, Category tree and Filters & facets. Paste a noon category URL or just its path, for example: electronics-and-mobiles/mobiles-and-accessories/mobiles-20905/smartphones",
            "items": {
              "type": "string"
            }
          },
          "brandCodes": {
            "title": "Brand codes",
            "type": "array",
            "description": "Used by Brand. The brand's code as it appears in its noon URL, lowercase, for example: apple",
            "items": {
              "type": "string"
            }
          },
          "productSkus": {
            "title": "Product SKUs or product URLs",
            "type": "array",
            "description": "Used by Product detail and Seller offers. Paste a full noon product URL or just the SKU, for example: N70211544V",
            "items": {
              "type": "string"
            }
          },
          "targets": {
            "title": "Targets (generic)",
            "type": "array",
            "description": "Optional. A single list that is routed into whichever field the chosen mode needs, so this actor can be chained from another one without rewiring the input.",
            "items": {
              "type": "string"
            }
          },
          "country": {
            "title": "Country",
            "enum": [
              "ae",
              "sa",
              "eg",
              "kw",
              "qa",
              "bh",
              "om"
            ],
            "type": "string",
            "description": "Which noon storefront to read. This sets the catalogue, the prices and the currency.",
            "default": "ae"
          },
          "language": {
            "title": "Language",
            "enum": [
              "en",
              "ar"
            ],
            "type": "string",
            "description": "English or Arabic product titles and descriptions. Prices are identical either way.",
            "default": "en"
          },
          "maxItems": {
            "title": "Maximum items",
            "minimum": 0,
            "type": "integer",
            "description": "Stop after this many records in total. Leave empty or 0 for no limit.",
            "default": 200
          },
          "maxPages": {
            "title": "Maximum pages per input",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "How deep to paginate each keyword, category or brand. noon stops serving results after page 50 no matter what is set here.",
            "default": 10
          },
          "limitPerPage": {
            "title": "Products per page",
            "minimum": 1,
            "maximum": 200,
            "type": "integer",
            "description": "How many products to request per page. noon accepts up to 200 and quietly caps anything higher, so 200 means four times fewer requests than the website's own 50.",
            "default": 200
          },
          "sortBy": {
            "title": "Sort by",
            "enum": [
              "popularity",
              "price",
              "new_arrivals",
              "discount",
              "rating"
            ],
            "type": "string",
            "description": "Ordering for listing modes. Popularity is noon's own default.",
            "default": "popularity"
          },
          "sortDir": {
            "title": "Sort direction",
            "enum": [
              "asc",
              "desc"
            ],
            "type": "string",
            "description": "Ascending or descending. Only applies when Sort by is not Popularity.",
            "default": "desc"
          },
          "priceMin": {
            "title": "Minimum price",
            "minimum": 0,
            "type": "integer",
            "description": "Optional price floor, in the selected country's currency."
          },
          "priceMax": {
            "title": "Maximum price",
            "minimum": 0,
            "type": "integer",
            "description": "Optional price ceiling, in the selected country's currency."
          },
          "brandFilter": {
            "title": "Filter by brand",
            "type": "string",
            "description": "Optional. Narrow Search and Category results to one brand, using the brand's lowercase code, for example: apple"
          },
          "concurrency": {
            "title": "Concurrent requests",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "How many product pages to fetch at once in Product detail and Seller offers modes.",
            "default": 4
          },
          "instantLat": {
            "title": "noon Minutes: latitude",
            "type": "string",
            "description": "Advanced, noon Minutes only. Delivery point latitude as noon encodes it (degrees times 10 million). The default is Downtown Dubai."
          },
          "instantLng": {
            "title": "noon Minutes: longitude",
            "type": "string",
            "description": "Advanced, noon Minutes only. Delivery point longitude as noon encodes it (degrees times 10 million)."
          },
          "instantEcomZone": {
            "title": "noon Minutes: zone code",
            "type": "string",
            "description": "Advanced, noon Minutes only. Overrides the delivery zone, for example AE_DXB-S14."
          },
          "instantZoneCode": {
            "title": "noon Minutes: warehouse code",
            "type": "string",
            "description": "Advanced, noon Minutes only. Overrides which dark store's stock is read, for example W00050759A."
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Leave this off for search, category, brand, product, seller offers, category tree and filters - they do not need a proxy. Switch on Residential proxy (in the country you want) for noon Minutes, which noon serves only to ordinary consumer connections.",
            "default": {
              "useApifyProxy": false
            }
          },
          "maxRetries": {
            "title": "Maximum retries",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "How many times to retry a failed request before giving up on it and writing an error row.",
            "default": 4
          },
          "requestTimeoutSecs": {
            "title": "Request timeout (seconds)",
            "minimum": 5,
            "maximum": 300,
            "type": "integer",
            "description": "How long to wait for a single response before treating it as failed.",
            "default": 60
          },
          "requestDelaySecs": {
            "title": "Delay between requests (seconds)",
            "minimum": 0,
            "maximum": 60,
            "type": "integer",
            "description": "Optional pause before each request. Leave at 0 unless you are deliberately running slowly.",
            "default": 0
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}