# SEO Keywords Finder - Google Autocomplete SEO Research (`devil_port369-owner/seo-keywords-finder`) Actor

Generate hundreds of related SEO keywords from a single seed using Google Autocomplete. Alphabet expansion, relevance scores, and clean JSON for keyword research, content planning, and AEO.

- **URL**: https://apify.com/devil\_port369-owner/seo-keywords-finder.md
- **Developed by:** [DataFusionX](https://apify.com/devil_port369-owner) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## 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

## SEO Keywords Finder – Google Autocomplete Keyword Research

> **Extract and expand SEO keywords in real time.** Convert a single seed keyword into hundreds of actionable long-tail and AEO-friendly keyword ideas using Google Autocomplete, with optional alphabet expansion and relevance scores.

[![Apify Actor](https://img.shields.io/badge/Apify-Actor-orange.svg)](https://apify.com)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

***

### 📌 Overview

The **SEO Keyword Scraper Actor** is a powerful data extraction tool designed for marketers, developers, and SEO professionals. By entering a single seed keyword, this Actor gathers high-value search queries, long-tail variations, and question-based keywords to power your content strategy and search engine visibility.

Use it for keyword research, topical clustering, programmatic SEO, and **Answer Engine Optimization (AEO)** without paying for expensive SEO suites.

***

### 🚀 Key Features

- **Seed Keyword Expansion:** Turn one seed into hundreds of related long-tail ideas via Google Autocomplete.
- **Alphabet Expansion:** Query `seed + a` … `seed + z` (optional `0`–`9`) for deep coverage beyond the first 8–12 suggestions.
- **Relevance Scores:** Keep Google’s suggest relevance values when available for ranking ideas.
- **Language & Country Bias:** Control `hl` (language) and `gl` (country) for localized suggestions.
- **Multi-Seed Runs:** Process many seeds in one job with concurrent workers.
- **Clean Linear JSON:** One row per keyword—ready for CSV, Excel, pipelines, or other Apify actors.
- **High-Speed & Scalable:** Powered by Apify’s cloud infrastructure with automatic proxy rotation to prevent rate limits.

***

### ⚙️ Input Parameters

Configure the Actor input using JSON or the Apify console UI:

| Parameter | Type | Required | Default | Description |
| :--------------------- | :------ | :------- | :-------- | :----------------------------------------------------------- |
| `keywords` | Array | Yes | `[]` | Seed keywords (e.g. `["instagram scraper"]`). |
| `expandAlphabet` | Boolean | No | `true` | Expand each seed with letters `a`–`z`. |
| `includeDigits` | Boolean | No | `false` | Also expand with digits `0`–`9` when alphabet expansion is on. |
| `language` | String | No | `"en"` | Google UI language code (`hl`), e.g. `en`, `es`, `hi`. |
| `country` | String | No | `"us"` | Country bias code (`gl`), e.g. `us`, `gb`, `in`, `np`. |
| `maxKeywordsPerSeed` | Number | No | `0` | Max unique keywords per seed (`0` = unlimited). |
| `includeRelevance` | Boolean | No | `true` | Include relevance scores when Google provides them. |

#### Example Input JSON

```json
{
  "keywords": ["instagram scraper", "youtube comment scraper"],
  "expandAlphabet": true,
  "includeDigits": false,
  "language": "en",
  "country": "us",
  "maxKeywordsPerSeed": 0,
  "includeRelevance": true
}
```

***

### 📤 Output Format

The Actor pushes results to the default Apify Dataset.

#### Sample Keyword Record

```json
{
  "seed": "instagram scraper",
  "keyword": "instagram scraper github",
  "relevance": 1250,
  "source_query": "instagram scraper g",
  "scraped_at": "2026-09-08T05:30:00.000000+00:00"
}
```

#### Sample Summary Record

```json
{
  "type": "summary",
  "seed": "instagram scraper",
  "keyword_count": 186,
  "scraped_at": "2026-09-08T05:30:00.000000+00:00"
}
```

| Field | Description |
| :------------- | :-------------------------------------------------- |
| `seed` | Original seed keyword |
| `keyword` | Related suggestion (normalized) |
| `relevance` | Google suggest relevance score (if enabled) |
| `source_query` | Actual query that produced this suggestion |
| `scraped_at` | UTC timestamp |

Export from Apify as **JSON, CSV, Excel, or XML**.

***

### 💡 How to Use

1. **Set Up:** Create a free account on [Apify](https://apify.com) and open this Actor.
2. **Add Seed Keywords:** Enter one or more terms in `keywords`.
3. **Tune Expansion:** Leave `expandAlphabet` on for maximum coverage; set `maxKeywordsPerSeed` if you need a cap.
4. **Run the Actor:** Click **Start**.
5. **Export Data:** Download the dataset or pipe it into another Actor / webhook.

### 🎯 Use Cases

- **SEO keyword research** – long-tail and related terms from any seed
- **AEO / AI answer optimization** – discover natural language phrasing users type
- **Content & topical maps** – cluster ideas for blogs, YouTube, docs, landing pages
- **Programmatic SEO** – feed expanded lists into scrapers, writers, or internal tools
- **Competitor & product research** – expand `{brand}` / `{product}` seeds quickly
- **PPC ideation** – low-cost discovery before Keyword Planner or Ads tools

***

### ❓ Frequently Asked Questions (FAQ)

#### What is a Related Keywords Finder Actor?

An SEO Keyword Scraper Actor is an automated tool hosted on Apify that extracts related keywords, search volumes, and user search queries based on a single seed term and returns related search suggestions—typically via Google Autocomplete—so you can expand SEO and AEO keyword lists without manual typing.

#### How does alphabet expansion work?

A single autocomplete call often returns only ~8–12 ideas. With **alphabet expansion**, the Actor also queries `seed a`, `seed b`, … `seed z` (and optionally `0`–`9`), then merges and deduplicates all suggestions for much larger lists.

#### How does this support Answer Engine Optimization (AEO)?

The Actor extracts long-tail, question-based search queries (e.g., "how to choose keywords for seo"). Targeting these natural language questions helps optimize content for AI search engines, voice assistants, and Google Featured Snippets.

#### Does this return search volume, CPC, or keyword difficulty?

No. This Actor focuses on **related keyword discovery and expansion** from Google Autocomplete. Volume, CPC, and difficulty require separate SEO data providers.

#### Can I run multiple seeds at once?

Yes. Pass an array in `keywords`. Seeds can run concurrently (controlled by `MAX_THREADS`).

#### Can I integrate this into an automated pipeline?

Yes. You can trigger this Actor programmatically using the Apify API, Python SDK, Node.js SDK, or webhooks.

#### Will results change by country or language?

Yes. Set `country` (`gl`) and `language` (`hl`) to bias suggestions (e.g. `in` + `en` for India-focused English queries).

***

### ⚡ Performance Notes

| Mode | Approx. requests per seed |
| :---------------------- | :------------------------ |
| No expansion | ~1 |
| Alphabet `a`–`z` | ~27 |
| Alphabet + digits `0`–`9` | ~37 |

Throughput depends on proxy limits and Google response times. Retries apply on transient failures; HTTP 404 on a query is skipped cleanly.

***

### 📄 License

This project is licensed under the MIT License.

***

### Built by

**DataFusionX – Manoj Karki**\
Production Apify actors for SEO, social, and data pipelines.

# Actor input Schema

## `keywords` (type: `array`):

One or more seed keywords. Related suggestions are generated for each.

## `expandAlphabet` (type: `boolean`):

If enabled, queries seed + a–z (and 0–9) to collect many more related keywords.

## `includeDigits` (type: `boolean`):

Also query seed + 0–9 when alphabet expansion is on.

## `language` (type: `string`):

Google UI language code (en, es, de, fr, hi…). Empty = default.

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

Country bias code (us, gb, in, np…). Empty = default.

## `maxKeywordsPerSeed` (type: `integer`):

Cap on unique keywords returned per seed. 0 = unlimited.

## `includeRelevance` (type: `boolean`):

Attach Google suggest relevance scores when available.

## Actor input object example

```json
{
  "keywords": [
    "instagram scraper",
    "youtube comment scraper"
  ],
  "expandAlphabet": true,
  "includeDigits": false,
  "language": "en",
  "country": "us",
  "maxKeywordsPerSeed": 1000,
  "includeRelevance": true
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {
    "keywords": [
        "instagram scraper",
        "youtube comment scraper"
    ],
    "language": "en",
    "country": "us"
};

// Run the Actor and wait for it to finish
const run = await client.actor("devil_port369-owner/seo-keywords-finder").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 = {
    "keywords": [
        "instagram scraper",
        "youtube comment scraper",
    ],
    "language": "en",
    "country": "us",
}

# Run the Actor and wait for it to finish
run = client.actor("devil_port369-owner/seo-keywords-finder").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "keywords": [
    "instagram scraper",
    "youtube comment scraper"
  ],
  "language": "en",
  "country": "us"
}' |
apify call devil_port369-owner/seo-keywords-finder --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,devil_port369-owner/seo-keywords-finder"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/iTYUSVa4POQR1A1xb/builds/e5mtpr1bqvgz3L6Sw/openapi.json
