# Google Search Bar Scraper (`caprolok/google-search-bar-scraper`) Actor

Google Search Bar Scraper: Next-gen keyword research tool. Extract keywords from Google, aligning content with market demand. Vital for bloggers, e-commerce pros, & digital marketers. Boost SEO, craft impactful content, and increase traffic. Harness real-time keyword insights and lead the trend.

- **URL**: https://apify.com/caprolok/google-search-bar-scraper.md
- **Developed by:** [Caprolok](https://apify.com/caprolok) (community)
- **Categories:** SEO tools
- **Stats:** 235 total users, 1 monthly users, 100.0% runs succeeded, 13 bookmarks
- **User rating**: No ratings yet

## Pricing

$10.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#rental-actors

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## 🔍 Google Search Bar Scraper (💯% Free!)

### 📌 Introduction:

**Google Search Bar Scraper** is your go-to digital companion for tapping into the web's autocomplete wonders. It's smart and fast, quickly fetching a list of relevant search suggestions based on what you type. Whether you're diving into SEO research, gauging the latest market trends, planning your next big content, or just being curious about what the world is searching for, this tool has got you covered. With its user-friendly interface, even digital newcomers can navigate with ease. Step into the pulse of online search trends and stay ahead of the curve with our trusty tool.

### 🌟 Why Use Our Tool? 🌟

- **🔍 Deep Insights:** Get a broader perspective on search behaviours, great for research and marketing.
- **💸 Cost-Efficient:** Why pay when you can get it for free? Get top-notch results without spending a dime.
- **📚 Easy-Peasy:** We’ve made sure it’s a walk in the park.
- **🌐 Multiplatform Flexibility:** Seamlessly integrate and utilize our tool across various platforms and devices.
- **🔌 API Integration Ready:** Elevate your data workflows and applications with our accessible API.

### 🚀 Features:

- **🖊 Seamless User Input Capture:** Simply type in a keyword or phrase and watch the tool work its magic!
- **📊 Comprehensive Results:** Experience a panoramic view of search extensions, all at no cost.
- **⚡ Speedy & Simple:** We’re fast, and we promise it's a breeze to use.
- **📥 Grab Your Results:** Want to keep those suggestions? Download 'em!
- **🔧 User-friendly Interface:** Simplified for everyone, ensuring a smooth experience.

### 🎥 Demo:

Here's a brief demonstration of how **Google Search Bar Scraper** generates real-time suggestions from Google Search bar:
![Google All](https://caprolok-assets.s3.amazonaws.com/Google+Blog/Google_All.gif)

> Watch as our tool generates real-time search term suggestions directly from Google's search bar, providing valuable insights into user behavior and market trends.

### 🛠 How it Works:

- **🔍 Input Submission:** Feed the tool your keyword or query.
- **🔄 Apify Integration:** Seamlessly interacts with the backend Apify actor.
- **🌍 Google Autocomplete Call:** A real-time call to Google gathers those precious suggestions.

### 📈 Applications:

- **📊 Business Decisions?:** Understand market shifts and adapt on-the-fly.
- **💼 Up Your SEO Game:** Uncover trending keywords for your site.
- **📝 Content Ideas Galore:** Write on topics people are curious about.
- **💼 Boost Your Traffic:** See popular searches to make your site shine.
- **📝 Write Trendy Stuff:** Write about what people are looking for!

### 🥳 In a Nutshell:

In today's fast-paced digital world, staying in tune with search trends and user behaviours can be a game-changer. With the **Google Search Bar Scraper** Tool at your fingertips, you're not just keeping up; you're getting ahead. Embrace the future of search insights and let this tool be your guide to the ever-evolving digital landscape. Discover, adapt, and excel with every keystroke.

# Actor input Schema

## `keyword` (type: `string`):

The keyword you want to get suggestions for.

## `country` (type: `string`):

Select your country

## `langauage` (type: `string`):

Select your language

## `aToZ` (type: `boolean`):

Get more results by selecting this option. We automatically add letters from 'a' to 'z' to your main keyword at the end.You can also add alphabets before your keyword by selecting the option below(

## `prefix_or_suffix` (type: `string`):

automatically add letters from 'a' to 'z' to your main keyword at the beginning or end. Check out the gif in description section to know more

## Actor input object example

```json
{
  "keyword": "Iphone",
  "country": "us",
  "langauage": "en",
  "aToZ": false,
  "prefix_or_suffix": "suffix"
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "keyword": "Iphone"
};

// Run the Actor and wait for it to finish
const run = await client.actor("caprolok/google-search-bar-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "keyword": "Iphone" }

# Run the Actor and wait for it to finish
run = client.actor("caprolok/google-search-bar-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "keyword": "Iphone"
}' |
apify call caprolok/google-search-bar-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=caprolok/google-search-bar-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/xaGAK2kHON5vKg7nq/builds/Mv5ZcO2NIlX4sj1Wl/openapi.json
