SEO Keyword Research

VerifiedSafe

Performs SEO keyword research via the DataForSEO API to retrieve keyword suggestions, search volume, CPC, and competition data. It helps users generate keyword ideas for blog posts, landing pages, or content strategies, and supports both JSON and table output formats for easy analysis.

Sby Skills Guide Bot
ContentIntermediate
1406/2/2026
Claude Code
#seo#keyword-research#content-strategy

Recommended for

Our review

Performs SEO keyword research using the DataForSEO API, returning search volume, CPC, and competition data.

Strengths

  • Automates keyword discovery
  • Provides accurate metrics (volume, CPC, competition)
  • Supports JSON and table output for analysis or human review
  • Can handle multiple seed keywords at once

Limitations

  • Requires DataForSEO API credentials
  • Data only for Google US market
  • Depends on external API availability
When to use it

Best used when planning content, blog posts, or landing pages to identify high-opportunity keywords with real search data.

When not to use it

Do not use if you lack DataForSEO API keys or need keyword data from non-US markets or alternative sources.

Security analysis

Safe
Quality score90/100

The skill executes a local Python script that uses credentials from environment variables to query the DataForSEO API. No destructive or obfuscated commands, no exfiltration of data beyond the intended API calls.

No concerns found

Examples

Get keyword suggestions
Find keyword ideas for a blog about healthy meal prep. Give me search volume and competition data.
Compare multiple seed keywords
Compare keywords 'react hooks' and 'vue composition api' with search volume and CPC.
Table output for review
Give me a table of keywords related to 'digital marketing' with their search volume and competition level.

name: keyword-research description: Performs SEO keyword research using DataForSEO API. Use when user asks about keyword ideas, search volume, CPC, competition data, or needs keywords for blog posts, landing pages, or content strategy. allowed-tools: Bash, Read

Keyword Research

Research keywords for SEO, content planning, and paid search using the DataForSEO API.

When to Use

  • User asks for keyword ideas or suggestions
  • User needs search volume, CPC, or competition data
  • User is planning blog posts, articles, or landing pages
  • User wants to analyze keyword opportunities
  • User mentions SEO keyword research

Requirements

Environment variables must be set:

  • DATAFORSEO_USERNAME - DataForSEO login email
  • DATAFORSEO_PASSWORD - DataForSEO API password

Commands

Get Keyword Suggestions

Returns keywords containing the seed term with metrics:

./scripts/keyword_research.py suggestions "seed keyword" -n 20

Get Related Keywords

Returns semantically related keywords:

./scripts/keyword_research.py related "seed keyword" -n 20

Options

| Option | Description | |--------|-------------| | -n, --limit | Max results per seed (default: 50) | | -f, --format | Output format: json (default) or table |

Output Format

Default JSON output for easy parsing:

[
  {
    "seed": "ai seo",
    "keywords": [
      {
        "keyword": "ai seo tools",
        "search_volume": 2900,
        "cpc": 25.48,
        "competition": 0.09,
        "competition_level": "LOW"
      }
    ]
  }
]

Examples

Research keywords for a blog post:

./scripts/keyword_research.py suggestions "python tutorial" -n 30

Compare multiple seed keywords:

./scripts/keyword_research.py suggestions "react hooks" "vue composition api" -n 20

Get table output for human review:

./scripts/keyword_research.py suggestions "ai tools" -f table

Interpreting Results

| Field | Meaning | |-------|---------| | search_volume | Monthly searches (Google US) | | cpc | Cost per click in USD | | competition | 0-1 scale (higher = more competitive) | | competition_level | LOW, MEDIUM, or HIGH |

Related skills