{
  "openapi": "3.0.1",
  "info": {
    "title": "Wolt Scraper | Restaurants, Menus & Cities",
    "description": "Scrape Wolt restaurants, grocery/retail venues, discovery feeds, category listings, city search, and guest-preview menus across cities worldwide. Extract slugs, ratings, prices, delivery ETA, menu items and options. Export Excel/CSV/JSON. Unofficial — not affiliated with Wolt.",
    "version": "0.1",
    "x-build-id": "66vLx6eu1Mglz4V7a"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/lentic_clockss~wolt-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-lentic_clockss-wolt-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/lentic_clockss~wolt-scraper/runs": {
      "post": {
        "operationId": "runs-sync-lentic_clockss-wolt-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/lentic_clockss~wolt-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-lentic_clockss-wolt-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": {
          "mode": {
            "title": "Mode",
            "enum": [
              "cities",
              "categories",
              "discovery",
              "category",
              "search",
              "restaurant",
              "venue",
              "startUrls"
            ],
            "type": "string",
            "description": "cities | categories | discovery | category | search | restaurant | venue | startUrls",
            "default": "discovery"
          },
          "lang": {
            "title": "Language",
            "type": "string",
            "description": "URL language segment (e.g. en)",
            "default": "en"
          },
          "country": {
            "title": "Country",
            "type": "string",
            "description": "ISO2/ISO3 country for city path (FIN, KAZ, DEU, …). Auto-maps proxyCountry.",
            "default": "FIN"
          },
          "city": {
            "title": "City slug",
            "type": "string",
            "description": "Wolt city slug, e.g. helsinki, berlin, taldykorgan",
            "default": "helsinki"
          },
          "categorySlug": {
            "title": "Category slug",
            "type": "string",
            "description": "Root tile or cuisine: restaurants, groceries, electronics, burgers, pizza, …"
          },
          "query": {
            "title": "Search query",
            "type": "string",
            "description": "Required for mode=search (alias: keyword)"
          },
          "slug": {
            "title": "Venue slug",
            "type": "string",
            "description": "Restaurant or retail venue slug (e.g. kfc-kamppi, wolt-market-kamppi)"
          },
          "lat": {
            "title": "Latitude",
            "type": "number",
            "description": "Optional override for discovery/category/search API geo"
          },
          "lon": {
            "title": "Longitude",
            "type": "number",
            "description": "Optional override for discovery/category/search API geo"
          },
          "includeMenu": {
            "title": "Include menu items",
            "type": "boolean",
            "description": "For restaurant/venue detail: include menuCategories/menuItems",
            "default": true
          },
          "includeMenuOptions": {
            "title": "Include menu options",
            "type": "boolean",
            "description": "Normalize options / variant_groups on menu items",
            "default": true
          },
          "menuItemLimit": {
            "title": "Menu item limit",
            "minimum": 0,
            "maximum": 5000,
            "type": "integer",
            "description": "Cap menu items (0 = no cap)"
          },
          "autoPaginateMenu": {
            "title": "Auto-paginate menu",
            "type": "boolean",
            "description": "Best-effort follow venue-content nextPageToken",
            "default": true
          },
          "enrichDetails": {
            "title": "Enrich listing cards",
            "type": "boolean",
            "description": "For discovery/category/search: scrape detail pages and merge fields",
            "default": true
          },
          "enrichLimit": {
            "title": "Enrich limit",
            "minimum": 0,
            "maximum": 500,
            "type": "integer",
            "description": "Max cards to enrich (default 20 when enrichDetails=true)"
          },
          "sortBy": {
            "title": "Sort listings",
            "enum": [
              "rating",
              "delivery-estimate",
              "delivery-price",
              "distance",
              "name",
              "name_desc"
            ],
            "type": "string",
            "description": "Client-side sort: rating | delivery-estimate | delivery-price | distance | name | name_desc"
          },
          "openNow": {
            "title": "Open / delivering now",
            "type": "boolean",
            "description": "Keep venues with online/delivers=true"
          },
          "isWoltPlus": {
            "title": "Wolt+ only",
            "type": "boolean",
            "description": "Filter by Wolt+ flag"
          },
          "priceRange": {
            "title": "Price range",
            "minimum": 1,
            "maximum": 4,
            "type": "integer",
            "description": "1–4 price tier filter"
          },
          "maxResults": {
            "title": "Max results",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Free plan capped at 200 results per run (developer limit, not Apify).",
            "default": 1
          },
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Wolt city / category / restaurant / venue URLs",
            "items": {
              "type": "string"
            }
          },
          "proxyCountry": {
            "title": "Proxy country (ISO2)",
            "type": "string",
            "description": "Egress hint; auto-mapped from country when omitted",
            "default": "FI"
          },
          "workerBaseUrl": {
            "title": "Worker base URL override",
            "type": "string",
            "description": "Optional HTTPS Cloud Run URL (allowlisted). Prefer Actor env WORKER_BASE_URL."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}