# DuckDuckGo UK Market Research Scraper

**Use case:** 

Scrape DuckDuckGo UK search results for product research with title, URL, rank, and snippet. Export structured SERP data to JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "queries": [
    "best crm software"
  ],
  "region": "uk-en",
  "timeRange": "",
  "safeSearch": "moderate"
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "displayedUrl": {
    "label": "Displayed Url",
    "format": "link"
  },
  "snippet": {
    "label": "Snippet",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [DuckDuckGo Search Results Scraper](https://apify.com/parseforge/duckduckgo-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/duckduckgo-search-scraper) to learn more, explore other use cases, and run it yourself.