# Scrape DuckDuckGo search results for keyword research

**Use case:** 

Collect DuckDuckGo organic results — titles, URLs and snippets — for any query. Privacy-friendly SERP data for keyword research and rank tracking.

## Input

```json
{
  "queries": [
    "best project management tools"
  ],
  "contentTypes": [
    "web"
  ],
  "region": "wt-wt",
  "safeSearch": "moderate",
  "timeFilter": "any",
  "maxResults": 20,
  "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.