# Get keyword suggestions from DuckDuckGo autocomplete

**Use case:** 

Harvest DuckDuckGo autocomplete suggestions for any seed term. Long-tail keyword ideas as clean JSON for SEO research and content planning.

## Input

```json
{
  "queries": [
    "best running shoes",
    "email marketing"
  ],
  "contentTypes": [
    "suggestions"
  ],
  "region": "wt-wt",
  "safeSearch": "moderate",
  "timeFilter": "any",
  "maxResults": 100,
  "maxPages": 0,
  "maxConcurrency": 4
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "string"
  },
  "query": {
    "label": "Query",
    "format": "string"
  },
  "position": {
    "label": "#",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "snippet": {
    "label": "Snippet",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [DuckDuckGo SERP Scraper — Web, News, Images, Videos & More](https://apify.com/jaybird/duckduckgo-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jaybird/duckduckgo-scraper) to learn more, explore other use cases, and run it yourself.