{
  "openapi": "3.0.1",
  "info": {
    "title": "Google Search Autocomplete: Cheaper, Faster, Reliable",
    "description": "Extract Google autocomplete suggestions with comprehensive metadata including position, relevance score, and full localization support.",
    "version": "1.1",
    "x-build-id": "RCDSVeMFhEJXnKcsf"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/lofomachines~google-search-autocomplete-cheaper-faster-reliable/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-lofomachines-google-search-autocomplete-cheaper-faster-reliable",
        "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/lofomachines~google-search-autocomplete-cheaper-faster-reliable/runs": {
      "post": {
        "operationId": "runs-sync-lofomachines-google-search-autocomplete-cheaper-faster-reliable",
        "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/lofomachines~google-search-autocomplete-cheaper-faster-reliable/run-sync": {
      "post": {
        "operationId": "run-sync-lofomachines-google-search-autocomplete-cheaper-faster-reliable",
        "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": [
          "seedPhrases",
          "country",
          "language"
        ],
        "properties": {
          "seedPhrases": {
            "title": "Seed Phrases",
            "type": "array",
            "description": "List of seed phrases to expand with autocomplete suggestions",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "country": {
            "title": "Target Country",
            "enum": [
              "us",
              "gb",
              "ca",
              "au",
              "de",
              "fr",
              "it",
              "es",
              "nl",
              "br",
              "mx",
              "ar",
              "jp",
              "cn",
              "in",
              "sg",
              "ae",
              "za",
              "pl",
              "ru",
              "se",
              "no",
              "dk",
              "fi",
              "be",
              "at",
              "ch",
              "pt",
              "gr",
              "cz",
              "hu",
              "ro",
              "ua",
              "tr",
              "il",
              "sa",
              "eg",
              "ng",
              "ke",
              "id",
              "th",
              "ph",
              "vn",
              "my",
              "kr",
              "tw",
              "hk",
              "nz",
              "ie",
              "cl",
              "co",
              "pe",
              "ve",
              "ec",
              "uy",
              "py",
              "bo",
              "cr",
              "pa",
              "do"
            ],
            "type": "string",
            "description": "Country code for autocomplete results (ISO 3166-1 alpha-2)",
            "default": "us"
          },
          "language": {
            "title": "Language",
            "enum": [
              "en",
              "es",
              "fr",
              "de",
              "it",
              "pt",
              "nl",
              "ru",
              "ja",
              "zh",
              "ar",
              "hi",
              "pl",
              "tr",
              "ko",
              "sv",
              "no",
              "da",
              "fi",
              "cs",
              "hu",
              "ro",
              "uk",
              "he",
              "th",
              "vi",
              "id",
              "ms",
              "tl",
              "el",
              "bg",
              "sr",
              "hr",
              "sk",
              "sl",
              "et",
              "lv",
              "lt",
              "fa",
              "ur",
              "bn",
              "ta",
              "te",
              "mr",
              "kn"
            ],
            "type": "string",
            "description": "Language code for autocomplete results (ISO 639-1)",
            "default": "en"
          },
          "expansionMode": {
            "title": "Expansion Mode",
            "enum": [
              "none",
              "alphabet",
              "alphabet_extended",
              "numbers",
              "full"
            ],
            "type": "string",
            "description": "How to expand seed phrases",
            "default": "alphabet"
          },
          "maxLetters": {
            "title": "Max Letters for Expansion",
            "minimum": 1,
            "maximum": 26,
            "type": "integer",
            "description": "How many letters to use for expansion (1-26). Lower = faster but fewer results",
            "default": 8
          },
          "includeNumbers": {
            "title": "Include Numbers",
            "type": "boolean",
            "description": "Add numbers (0-9) to expansion suffixes",
            "default": false
          },
          "commonSuffixes": {
            "title": "Common Suffixes",
            "type": "array",
            "description": "Additional common words/suffixes to append to seeds",
            "default": [
              "for",
              "how",
              "why",
              "what",
              "best",
              "free",
              "online",
              "tool"
            ],
            "items": {
              "type": "string"
            }
          },
          "maxResults": {
            "title": "Max Results per Seed",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Maximum number of autocomplete results to collect per seed (0 = unlimited)",
            "default": 20
          },
          "delayBetweenRequests": {
            "title": "Delay Between Requests (ms)",
            "minimum": 0,
            "maximum": 5000,
            "type": "integer",
            "description": "Optional throttle in milliseconds applied per concurrent worker. Leave 0 for maximum speed.",
            "default": 0
          },
          "concurrency": {
            "title": "Concurrency",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Number of parallel requests to the autocomplete API. Higher = faster, but too high may trigger rate limiting.",
            "default": 15
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Apify Proxy settings. Datacenter proxy is recommended for Google API to avoid rate limits.",
            "default": {
              "useApifyProxy": true
            }
          },
          "outputFormat": {
            "title": "Output Format",
            "enum": [
              "simple",
              "detailed",
              "grouped"
            ],
            "type": "string",
            "description": "How to structure the output data",
            "default": "detailed"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}