{
  "openapi": "3.0.1",
  "info": {
    "title": "Liquorland AU Catalog & Product Lookup (Unofficial)",
    "description": "Fetch Liquorland Australia categories, category listings, and product details in normalized output.",
    "version": "0.0",
    "x-build-id": "qSJwHD3yjn3bUcdmR"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/dromb~liquorland-au-catalog-product-lookup-unofficial/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-dromb-liquorland-au-catalog-product-lookup-unofficial",
        "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/dromb~liquorland-au-catalog-product-lookup-unofficial/runs": {
      "post": {
        "operationId": "runs-sync-dromb-liquorland-au-catalog-product-lookup-unofficial",
        "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/dromb~liquorland-au-catalog-product-lookup-unofficial/run-sync": {
      "post": {
        "operationId": "run-sync-dromb-liquorland-au-catalog-product-lookup-unofficial",
        "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": [
          "operation"
        ],
        "properties": {
          "operation": {
            "title": "Operation",
            "enum": [
              "categories",
              "category",
              "item",
              "search",
              "search_suggest",
              "locations",
              "suburbs",
              "nearby_stores"
            ],
            "type": "string",
            "description": "Actor operation to execute. The Console form shows all possible fields at once, but the generated default input intentionally stays minimal: only `operation` is prefilled. Check the README for the exact required inputs and validated starter examples for each operation.",
            "default": "categories"
          },
          "state": {
            "title": "State",
            "type": "string",
            "description": "Optional for categories, category, item, search, and search_suggest. Australian state code such as `nsw` or `vic`. Defaults to `nsw` when omitted."
          },
          "query": {
            "title": "Query",
            "type": "string",
            "description": "Required for search, search_suggest, locations, and suburbs. Use product keywords or a postcode/suburb lookup."
          },
          "postcode": {
            "title": "Postcode Alias",
            "type": "string",
            "description": "Optional alias for locations/suburbs. Equivalent to `query`."
          },
          "page": {
            "title": "Page",
            "type": "integer",
            "description": "Optional for category, search, and nearby_stores. One-based page index. Defaults to `1` when omitted."
          },
          "size": {
            "title": "Nearby Page Size",
            "type": "integer",
            "description": "Optional for nearby_stores. Number of stores per page. Defaults to `10` when omitted."
          },
          "show": {
            "title": "Search/Category Page Size",
            "type": "integer",
            "description": "Optional for category and search. Number of products per page. Category runs often use `72`, search runs often use `60`."
          },
          "sort": {
            "title": "Sort",
            "type": "string",
            "description": "Optional for category and search. Pass the site sort key when needed."
          },
          "facets": {
            "title": "Facets",
            "type": "string",
            "description": "Optional for category and search. Facet string copied from Liquorland navigation/search output when needed."
          },
          "storeId": {
            "title": "Store ID",
            "type": "string",
            "description": "Optional for search. Enables richer store-aware search. A practical real value looks like `2278`, obtainable from locations/nearby_stores."
          },
          "userId": {
            "title": "User ID",
            "type": "string",
            "description": "Optional advanced field for search or nearby_stores. Usually auto-detected from the session token."
          },
          "clientId": {
            "title": "Client ID",
            "type": "string",
            "description": "Optional advanced field for search. Usually auto-detected from the `_ga` cookie."
          },
          "authToken": {
            "title": "Auth Token",
            "type": "string",
            "description": "Optional advanced field for nearby_stores. Supply it together with `userId` if Liquorland does not expose an anonymous session token automatically."
          },
          "userKey": {
            "title": "User Key",
            "type": "string",
            "description": "Optional advanced field for nearby_stores. A random UUID is generated automatically when omitted."
          },
          "fallbackToSuggest": {
            "title": "Fallback To Search Suggest",
            "type": "boolean",
            "description": "Optional for search. When enabled, blocked or unavailable product search falls back to search suggestions instead of failing hard. Defaults to `true` when omitted."
          },
          "v": {
            "title": "Search API Version",
            "type": "integer",
            "description": "Optional for search and search_suggest. Defaults to `2` when omitted."
          },
          "categoryId": {
            "title": "Category Path Alias",
            "type": "string",
            "description": "Optional for `category`. Use `path`, `categoryPath`, or `categoryId`."
          },
          "categoryPath": {
            "title": "Category Path",
            "type": "string",
            "description": "Optional for `category`. Use `categoryPath`, `path`, or `categoryId`."
          },
          "path": {
            "title": "Path",
            "type": "string",
            "description": "Optional for `category`. Category path such as `/beer`."
          },
          "itemId": {
            "title": "Product ID Alias",
            "type": "string",
            "description": "Optional for `item`. Use `itemId`, `productId`, or `url`."
          },
          "productId": {
            "title": "Product ID",
            "type": "string",
            "description": "Optional for `item`. Use `productId`, `itemId`, or `url`."
          },
          "itemSlug": {
            "title": "Item Slug",
            "type": "string",
            "description": "Optional for `item`. Use together with `productId`, or supply `url`."
          },
          "slug": {
            "title": "Slug Alias",
            "type": "string",
            "description": "Optional for `item`. Alias for `itemSlug`."
          },
          "url": {
            "title": "Product URL",
            "type": "string",
            "description": "Optional for `item`. Full product URL alternative to `productId` plus `itemSlug`."
          },
          "includeReviews": {
            "title": "Include Reviews",
            "type": "boolean",
            "description": "Optional for `item`. Fetch Bazaarvoice review summary and recent reviews when available. Defaults to `false` when omitted."
          },
          "reviewLimit": {
            "title": "Review Limit",
            "type": "integer",
            "description": "Optional for `item`. Number of recent reviews to request when `includeReviews` is enabled. Defaults to `3` when omitted."
          },
          "lat": {
            "title": "Latitude",
            "type": "number",
            "description": "Required for nearby_stores. Treat nearby_stores as an advanced operation: it may also need `authToken` and `userId` if anonymous session bootstrap is unavailable."
          },
          "lon": {
            "title": "Longitude",
            "type": "number",
            "description": "Required for nearby_stores. Treat nearby_stores as an advanced operation: it may also need `authToken` and `userId` if anonymous session bootstrap is unavailable."
          },
          "includeRaw": {
            "title": "Include Raw Payload",
            "type": "boolean",
            "description": "Optional for any operation. Include the unnormalized source payload in the OUTPUT summary."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}