# Get Keyword Planner data without a Google Ads account

**Use case:** 

Google Keyword Planner figures (monthly search volume, CPC, competition, top-of-page bids) for your keywords without a Google Ads account or API access, in any of 94 countries. Volumes only, $3 per 1,000 keywords.

## Input

```json
{
  "keywords": [
    "crm software",
    "project management tool",
    "email marketing",
    "accounting software",
    "help desk software"
  ],
  "country": "GB",
  "includeTrends": false,
  "trendsTimeRange": "past_5_years",
  "maxConcurrency": 5,
  "failOnErrors": false
}
```

## Output

```json
{
  "keyword": {
    "label": "Keyword",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "searchVolume": {
    "label": "Monthly searches",
    "format": "integer"
  },
  "trends.momentum": {
    "label": "Trend",
    "format": "string"
  },
  "trends.seasonalPeakMonth": {
    "label": "Seasonal peak",
    "format": "string"
  },
  "cpc": {
    "label": "CPC (USD)",
    "format": "number"
  },
  "competitionLevel": {
    "label": "Competition",
    "format": "string"
  },
  "keywordDifficulty": {
    "label": "Difficulty",
    "format": "integer"
  },
  "searchIntent": {
    "label": "Intent",
    "format": "string"
  },
  "trends.yearOnYearChangePct": {
    "label": "Trends YoY %",
    "format": "integer"
  },
  "searchVolumeTrend.yearlyPct": {
    "label": "Volume YoY %",
    "format": "integer"
  },
  "trends.seasonal": {
    "label": "Seasonal",
    "format": "boolean"
  },
  "trends.peakDate": {
    "label": "Trends peak",
    "format": "string"
  },
  "trends.text": {
    "label": "Trends summary",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Keyword Search Volume & CPC API + Google Trends](https://apify.com/meridianlabs/keyword-search-volume.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/meridianlabs/keyword-search-volume.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/meridianlabs/keyword-search-volume.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
